Skip to content

Commit ef7758b

Browse files
committed
doc nit
1 parent e5d2e2d commit ef7758b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

embedded-io-async/src/impls/slice_mut.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ impl Write for &mut [u8] {
2626
}
2727
}
2828

29-
/// Write is implemented for `&mut [MaybeUninit<u8>]` by copying into the slice, initializing & overwriting
30-
/// its data.
29+
/// Write is implemented for `&mut [MaybeUninit<u8>]` by copying into the slice, initializing
30+
/// & overwriting its data.
3131
///
3232
/// Note that writing updates the slice to point to the yet unwritten part.
3333
/// The slice will be empty when it has been completely overwritten.

embedded-io/src/impls/slice_mut.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ impl ErrorType for &mut [MaybeUninit<u8>] {
5959
type Error = SliceWriteError;
6060
}
6161

62-
/// Write is implemented for `&mut [MaybeUninit<u8>]` by copying into the slice, initializing & overwriting
63-
/// its data.
62+
/// Write is implemented for `&mut [MaybeUninit<u8>]` by copying into the slice, initializing
63+
/// & overwriting its data.
6464
///
6565
/// Note that writing updates the slice to point to the yet unwritten part.
6666
/// The slice will be empty when it has been completely overwritten.

0 commit comments

Comments
 (0)