File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
embedded-io-async/src/impls Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ impl Write for &mut [u8] {
26
26
}
27
27
}
28
28
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.
31
31
///
32
32
/// Note that writing updates the slice to point to the yet unwritten part.
33
33
/// The slice will be empty when it has been completely overwritten.
Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ impl ErrorType for &mut [MaybeUninit<u8>] {
59
59
type Error = SliceWriteError ;
60
60
}
61
61
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.
64
64
///
65
65
/// Note that writing updates the slice to point to the yet unwritten part.
66
66
/// The slice will be empty when it has been completely overwritten.
You can’t perform that action at this time.
0 commit comments