aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-09-12 17:20:45 +0200
committerAlex Auvolat <alex@adnab.me>2022-09-12 17:20:45 +0200
commit8a7aca98375ff20effaab3d7c95124bd4cbc925c (patch)
treed5a90372809b98d9a6bb4fb02a423e4a8c1cf02f /src
parentf0326607eebcded55fd01c41895a5b6e23bac55f (diff)
downloadnetapp-8a7aca98375ff20effaab3d7c95124bd4cbc925c.tar.gz
netapp-8a7aca98375ff20effaab3d7c95124bd4cbc925c.zip
reword doc comment
Diffstat (limited to 'src')
-rw-r--r--src/bytes_buf.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytes_buf.rs b/src/bytes_buf.rs
index 857be9d..05b7edd 100644
--- a/src/bytes_buf.rs
+++ b/src/bytes_buf.rs
@@ -5,7 +5,7 @@ pub use bytes::Bytes;
/// A circular buffer of bytes, internally represented as a list of Bytes
/// for optimization, but that for all intent and purposes acts just like
/// a big byte slice which can be extended on the right and from which
-/// one can take on the left.
+/// stuff can be taken on the left.
pub struct BytesBuf {
buf: VecDeque<Bytes>,
buf_len: usize,