We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20dec1d commit eaa3a92Copy full SHA for eaa3a92
src/vec/vec-into-iter.md
@@ -66,7 +66,7 @@ impl<T> IntoIterator for Vec<T> {
66
let cap = self.cap;
67
let len = self.len;
68
69
- // Make sure not to drop Vec since that will free the buffer
+ // Make sure not to drop Vec since that would free the buffer
70
mem::forget(self);
71
72
unsafe {
0 commit comments