We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8eb3a01 + 8b8c014 commit 6709beeCopy full SHA for 6709bee
src/primitives/array.md
@@ -6,7 +6,7 @@ at compile time, is part of their type signature `[T; length]`.
6
7
Slices are similar to arrays, but their length is not known at compile time.
8
Instead, a slice is a two-word object; the first word is a pointer to the data,
9
-the second word the length of the slice. The word size is the same as usize,
+the second word is the length of the slice. The word size is the same as usize,
10
determined by the processor architecture, e.g. 64 bits on an x86-64. Slices can
11
be used to borrow a section of an array and have the type signature `&[T]`.
12
0 commit comments