Skip to content

Commit

Permalink
Merge #898
Browse files Browse the repository at this point in the history
898: Fix dead link (renamed function) r=cuviper a=fzyzcjy



Co-authored-by: fzyzcjy <[email protected]>
  • Loading branch information
bors[bot] and fzyzcjy authored Oct 28, 2021
2 parents 2991c04 + 1461a5b commit f45eee8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/iter/len.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ use super::*;
use std::cmp;

/// `MinLen` is an iterator that imposes a minimum length on iterator splits.
/// This struct is created by the [`min_len()`] method on [`IndexedParallelIterator`]
/// This struct is created by the [`with_min_len()`] method on [`IndexedParallelIterator`]
///
/// [`min_len()`]: trait.IndexedParallelIterator.html#method.min_len
/// [`with_min_len()`]: trait.IndexedParallelIterator.html#method.with_min_len
/// [`IndexedParallelIterator`]: trait.IndexedParallelIterator.html
#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
#[derive(Debug, Clone)]
Expand Down Expand Up @@ -137,9 +137,9 @@ where
}

/// `MaxLen` is an iterator that imposes a maximum length on iterator splits.
/// This struct is created by the [`max_len()`] method on [`IndexedParallelIterator`]
/// This struct is created by the [`with_max_len()`] method on [`IndexedParallelIterator`]
///
/// [`max_len()`]: trait.IndexedParallelIterator.html#method.max_len
/// [`with_max_len()`]: trait.IndexedParallelIterator.html#method.with_max_len
/// [`IndexedParallelIterator`]: trait.IndexedParallelIterator.html
#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
#[derive(Debug, Clone)]
Expand Down

0 comments on commit f45eee8

Please sign in to comment.