aboutsummaryrefslogtreecommitdiff
path: root/src/peek_nth.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/peek_nth.rs')
-rw-r--r--src/peek_nth.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/peek_nth.rs b/src/peek_nth.rs
index d22258b..bcca458 100644
--- a/src/peek_nth.rs
+++ b/src/peek_nth.rs
@@ -3,7 +3,7 @@ use crate::PeekingNext;
use alloc::collections::VecDeque;
use std::iter::Fuse;
-/// See [`peek_nth()`](../fn.peek_nth.html) for more information.
+/// See [`peek_nth()`] for more information.
#[derive(Clone, Debug)]
pub struct PeekNth<I>
where
@@ -13,7 +13,7 @@ where
buf: VecDeque<I::Item>,
}
-/// A drop-in replacement for `std::iter::Peekable` which adds a `peek_nth`
+/// A drop-in replacement for [`std::iter::Peekable`] which adds a `peek_nth`
/// method allowing the user to `peek` at a value several iterations forward
/// without advancing the base iterator.
///