Skip to content

Commit 4140620

Browse files
committed
Fix typo
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
1 parent 850dcfb commit 4140620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/kernel/buffer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use core::fmt;
66

77
/// A pre-allocated buffer that implements [`core::fmt::Write`].
88
///
9-
/// Consequtive writes will append to what has already been written.
9+
/// Consecutive writes will append to what has already been written.
1010
/// Writes that don't fit in the buffer will fail.
1111
pub struct Buffer<'a> {
1212
slice: &'a mut [u8],

0 commit comments

Comments
 (0)