]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/nomicon/src/vec/vec-push-pop.md
New upstream version 1.62.1+dfsg1
[rustc.git] / src / doc / nomicon / src / vec / vec-push-pop.md
index 2a4e016421914c80a7031f043829c28a07a521fc..df083b9d11a916b4a5b62fa2ac35bdac7e78564b 100644 (file)
@@ -39,8 +39,8 @@ interprets it as a value of type T. This will leave the memory at this address
 logically uninitialized, even though there is in fact a perfectly good instance
 of T there.
 
-For `pop`, if the old len is 1, we want to read out of the 0th index. So we
-should offset by the new len.
+For `pop`, if the old len is 1, for example, we want to read out of the 0th
+index. So we should offset by the new len.
 
 <!-- ignore: simplified code -->
 ```rust,ignore