diff --git a/src/lib.rs b/src/lib.rs index aa8b54d..c64cc11 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -76,14 +76,14 @@ pub struct Map { pairs: [Pair; N], } -/// Iterator over the `Map`. +/// Iterator over the [`Map`]. pub struct Iter<'a, K, V, const N: usize> { next: usize, pos: usize, pairs: &'a [Pair; N], } -/// Into-iterator over the `Map`. +/// Into-iterator over the [`Map`]. pub struct IntoIter<'a, K, V, const N: usize> { next: usize, pos: usize,