diff options
author | 2023-11-16 12:24:21 +0100 | |
---|---|---|
committer | 2023-11-16 06:24:21 -0500 | |
commit | 72cbb92e0e53680c67c27b56fabbe1f3ed5dbae9 (patch) | |
tree | 3973e0862571346f83ee1bce657a784b1d50d56f /src/buf/take.rs | |
parent | bde8c50703869f54b905560eb62c2478a0111885 (diff) | |
download | bytes-72cbb92e0e53680c67c27b56fabbe1f3ed5dbae9.tar.gz bytes-72cbb92e0e53680c67c27b56fabbe1f3ed5dbae9.tar.zst bytes-72cbb92e0e53680c67c27b56fabbe1f3ed5dbae9.zip |
docs: fix broken links (#639)
Fixed a few broken links and converted a lot of them from the
html-link to intra-doc links.
Diffstat (limited to 'src/buf/take.rs')
-rw-r--r-- | src/buf/take.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buf/take.rs b/src/buf/take.rs index d3cb10a..a16a434 100644 --- a/src/buf/take.rs +++ b/src/buf/take.rs @@ -5,7 +5,7 @@ use core::cmp; /// A `Buf` adapter which limits the bytes read from an underlying buffer. /// /// This struct is generally created by calling `take()` on `Buf`. See -/// documentation of [`take()`](trait.Buf.html#method.take) for more details. +/// documentation of [`take()`](Buf::take) for more details. #[derive(Debug)] pub struct Take<T> { inner: T, |