We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c2a5d4 commit 77aeb7bCopy full SHA for 77aeb7b
src/doc/book/primitive-types.md
@@ -163,7 +163,7 @@ A ‘slice’ is a reference to (or “view” into) another data structure. The
163
useful for allowing safe, efficient access to a portion of an array without
164
copying. For example, you might want to reference only one line of a file read
165
into memory. By nature, a slice is not created directly, but from an existing
166
-variable binding. Slices have a defined length, can be mutable or immutable.
+variable binding. Slices have a defined length, and can be mutable or immutable.
167
168
Internally, slices are represented as a pointer to the beginning of the data
169
and a length.
0 commit comments