We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f262bb8 + e614bb7 commit 197aa52Copy full SHA for 197aa52
src/doc/book/ownership.md
@@ -155,7 +155,7 @@ vector object and its data live in separate memory regions instead of being a
155
single contiguous memory allocation (due to reasons we will not go into at
156
this point of time). These two parts of the vector (the one on the stack and
157
one on the heap) must agree with each other at all times with regards to
158
-things like the length, capacity etc.
+things like the length, capacity, etc.
159
160
When we move `v` to `v2`, Rust actually does a bitwise copy of the vector
161
object `v` into the stack allocation represented by `v2`. This shallow copy
0 commit comments