Fix typos in code examples.

This commit is contained in:
Mara Bos 2021-06-17 12:13:06 +02:00 committed by GitHub
parent fd14c52075
commit 5e7a8c6eb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1059,7 +1059,7 @@ impl<'a> IoSliceMut<'a> {
/// let mut data = [1; 8];
/// let mut buf = IoSliceMut::new(&mut data);
///
/// // Mark 10 bytes as read.
/// // Mark 3 bytes as read.
/// buf.advance(3);
/// assert_eq!(buf.deref(), [1; 5].as_ref());
/// ```
@ -1193,7 +1193,7 @@ impl<'a> IoSlice<'a> {
/// let mut data = [1; 8];
/// let mut buf = IoSlice::new(&mut data);
///
/// // Mark 10 bytes as read.
/// // Mark 3 bytes as read.
/// buf.advance(3);
/// assert_eq!(buf.deref(), [1; 5].as_ref());
/// ```