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 a5acccc commit 1532193Copy full SHA for 1532193
src/buffer.rs
@@ -15,7 +15,7 @@ use core::slice;
15
/// | If you pass a… | You get back a… |
16
/// | ------------------------ | --------------- |
17
/// | `&mut [u8]` | `usize`, indicating the number of elements initialized. |
18
-/// | `&mut [MaybeUninit<u8>]` | `(&mut [u8], &[mut MaybeUninit<u8>])`, holding the initialized and uninitialized subslices. |
+/// | `&mut [MaybeUninit<u8>]` | `(&mut [u8], &mut [MaybeUninit<u8>])`, holding the initialized and uninitialized subslices. |
19
/// | [`SpareCapacity`] | `usize`, indicating the number of elements initialized. And the `Vec` is extended. |
20
///
21
/// # Examples
0 commit comments