Skip to content

Commit e804adf

Browse files
committed
Fix clippy lint error
1 parent dbafb6c commit e804adf

File tree

1 file changed

+6
-3
lines changed
  • rust/bufferfish-core/src

1 file changed

+6
-3
lines changed

rust/bufferfish-core/src/lib.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,12 @@ impl std::error::Error for BufferfishError {
4747
}
4848
}
4949

50-
/// A wrapper around a `Cursor<Vec<u8>>` that provides a simple API for reading
51-
/// and writing bytes. This is meant to be used with its companion library in
52-
/// TypeScript to provide consistent encoding and decoding interop.
50+
/// A wrapper around a `Cursor<Vec<u8>>` providing an API
51+
/// for encoding and decoding binary data.
52+
///
53+
/// This is meant to be used with its companion library in
54+
/// TypeScript to provide consistent encoding and decoding
55+
/// interop.
5356
#[derive(Debug, Default)]
5457
pub struct Bufferfish {
5558
inner: Cursor<Vec<u8>>,

0 commit comments

Comments
 (0)