File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ use crate::Buf;
32
32
/// All `Bytes` implementations must fulfill the following requirements:
33
33
/// - They are cheaply cloneable and thereby shareable between an unlimited amount
34
34
/// 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.
36
36
///
37
37
/// ```
38
38
/// use bytes::Bytes;
@@ -71,7 +71,7 @@ use crate::Buf;
71
71
///
72
72
/// For `Bytes` implementations which point to a reference counted shared storage
73
73
/// (e.g. an `Arc<[u8]>`), sharing will be implemented by increasing the
74
- /// the reference count.
74
+ /// reference count.
75
75
///
76
76
/// Due to this mechanism, multiple `Bytes` instances may point to the same
77
77
/// shared memory region.
You can’t perform that action at this time.
0 commit comments