aboutsummaryrefslogtreecommitdiff
path: root/src/buf/iter.rs
diff options
context:
space:
mode:
authorGravatar Gabriel Goller <gabrielgoller123@gmail.com> 2023-11-16 12:24:21 +0100
committerGravatar GitHub <noreply@github.com> 2023-11-16 06:24:21 -0500
commit72cbb92e0e53680c67c27b56fabbe1f3ed5dbae9 (patch)
tree3973e0862571346f83ee1bce657a784b1d50d56f /src/buf/iter.rs
parentbde8c50703869f54b905560eb62c2478a0111885 (diff)
downloadbytes-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/iter.rs')
-rw-r--r--src/buf/iter.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/buf/iter.rs b/src/buf/iter.rs
index c694e3d..74f9b99 100644
--- a/src/buf/iter.rs
+++ b/src/buf/iter.rs
@@ -17,9 +17,6 @@ use crate::Buf;
/// assert_eq!(iter.next(), Some(b'c'));
/// assert_eq!(iter.next(), None);
/// ```
-///
-/// [`iter`]: trait.Buf.html#method.iter
-/// [`Buf`]: trait.Buf.html
#[derive(Debug)]
pub struct IntoIter<T> {
inner: T,