Fix doc example for `MaybeUninit::get_mut()`

Suggested by @ametisf in https://github.com/rust-lang/rust/pull/65948#issuecomment-589988183

Co-Authored-By: Frantisek Fladung <fladufra@fel.cvut.cz>
This commit is contained in:
Daniel Henry-Mantilla 2020-02-22 23:19:05 +01:00
parent 436494b8f8
commit 2cf339aeda
1 changed files with 1 additions and 1 deletions

View File

@ -669,7 +669,7 @@ impl<T> MaybeUninit<T> {
/// // Now we can use `buf` as a normal slice:
/// buf.sort_unstable();
/// assert!(
/// buf.chunks(2).all(|chunk| chunk[0] <= chunk[1]),
/// buf.windows(2).all(|pair| pair[0] <= pair[1]),
/// "buffer is sorted",
/// );
/// ```