aboutsummaryrefslogtreecommitdiff
path: root/src/bytes_mut.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytes_mut.rs')
-rw-r--r--src/bytes_mut.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bytes_mut.rs b/src/bytes_mut.rs
index c860720..57fd33e 100644
--- a/src/bytes_mut.rs
+++ b/src/bytes_mut.rs
@@ -399,7 +399,7 @@ impl BytesMut {
///
/// Existing underlying capacity is preserved.
///
- /// The [`split_off`] method can emulate `truncate`, but this causes the
+ /// The [split_off](`Self::split_off()`) method can emulate `truncate`, but this causes the
/// excess bytes to be returned instead of dropped.
///
/// # Examples
@@ -411,8 +411,6 @@ impl BytesMut {
/// buf.truncate(5);
/// assert_eq!(buf, b"hello"[..]);
/// ```
- ///
- /// [`split_off`]: #method.split_off
pub fn truncate(&mut self, len: usize) {
if len <= self.len() {
unsafe {