Skip to content

Commit

Permalink
#7 doc
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Apr 19, 2023
1 parent 5a8370a commit 1f48f83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -76,14 +76,14 @@ pub struct Map<K: Copy + PartialEq, V: Clone + Copy, const N: usize> {
pairs: [Pair<K, V>; 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<K, V>; N],
}

/// Into-iterator over the `Map`.
/// Into-iterator over the [`Map`].
pub struct IntoIter<'a, K, V, const N: usize> {
next: usize,
pos: usize,
Expand Down

0 comments on commit 1f48f83

Please sign in to comment.