Skip to content

Commit c93a94b

Browse files
xpromacheNicolae Mihalache
andauthored
Fix duplicate "the the" typos (#585)
Co-authored-by: Nicolae Mihalache <[email protected]>
1 parent 050d65b commit c93a94b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bytes.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ use crate::Buf;
3232
/// All `Bytes` implementations must fulfill the following requirements:
3333
/// - They are cheaply cloneable and thereby shareable between an unlimited amount
3434
/// of components, for example by modifying a reference count.
35-
/// - Instances can be sliced to refer to a subset of the the original buffer.
35+
/// - Instances can be sliced to refer to a subset of the original buffer.
3636
///
3737
/// ```
3838
/// use bytes::Bytes;
@@ -71,7 +71,7 @@ use crate::Buf;
7171
///
7272
/// For `Bytes` implementations which point to a reference counted shared storage
7373
/// (e.g. an `Arc<[u8]>`), sharing will be implemented by increasing the
74-
/// the reference count.
74+
/// reference count.
7575
///
7676
/// Due to this mechanism, multiple `Bytes` instances may point to the same
7777
/// shared memory region.

0 commit comments

Comments
 (0)