We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac82056 commit cd23799Copy full SHA for cd23799
library/std/src/io/readbuf.rs
@@ -136,7 +136,7 @@ impl<'a> ReadBuf<'a> {
136
assert!(self.remaining() >= n);
137
138
let extra_init = self.initialized - self.filled;
139
- // If we dont have enough initialized, do zeroing
+ // If we don't have enough initialized, do zeroing
140
if n > extra_init {
141
let uninit = n - extra_init;
142
let unfilled = &mut self.uninitialized_mut()[0..uninit];
0 commit comments