reword doc comment

This commit is contained in:
Alex 2022-09-12 17:20:45 +02:00
parent f0326607ee
commit 8a7aca9837
Signed by untrusted user: lx
GPG Key ID: 0E496D15096376BE
1 changed files with 1 additions and 1 deletions

View File

@ -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,