We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8bce0c commit 12a9cedCopy full SHA for 12a9ced
text/0000-read-buf.md
@@ -215,7 +215,7 @@ impl Read for TcpStream {
215
fn read_buf(&mut self, buf: &mut ReadBuf<'_>) -> io::Result<()> {
216
unsafe {
217
// Get access to the filled part of the buffer, without initializing it. This method is unsafe; we are
218
- // responsible for ensuing that we don't "de-initialize" portions of it that have previously been
+ // responsible for ensuring that we don't "de-initialize" portions of it that have previously been
219
// initialized.
220
let unfilled: &mut [MaybeUninit<u8>] = buf.unfilled_mut();
221
0 commit comments