File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
//! "Diff"ing iterators for caching elements to sequential collections without requiring the new
2
2
//! elements' iterator to be `Clone`.
3
3
//!
4
- //! - [`Diff`] (produced by the [`diff_with`] function)
4
+ //! [`Diff`] (produced by the [`diff_with`] function)
5
5
//! describes the difference between two non-`Clone` iterators `I` and `J` after breaking ASAP from
6
6
//! a lock-step comparison.
7
7
Original file line number Diff line number Diff line change @@ -427,13 +427,13 @@ macro_rules! chain {
427
427
/// This trait defines a number of methods. They are divided into two groups:
428
428
///
429
429
/// * *Adaptors* take an iterator and parameter as input, and return
430
- /// a new iterator value. These are listed first in the trait. An example
431
- /// of an adaptor is [`.interleave()`](Itertools::interleave)
430
+ /// a new iterator value. These are listed first in the trait. An example
431
+ /// of an adaptor is [`.interleave()`](Itertools::interleave)
432
432
///
433
433
/// * *Regular methods* are those that don't return iterators and instead
434
- /// return a regular value of some other kind.
435
- /// [`.next_tuple()`](Itertools::next_tuple) is an example and the first regular
436
- /// method in the list.
434
+ /// return a regular value of some other kind.
435
+ /// [`.next_tuple()`](Itertools::next_tuple) is an example and the first regular
436
+ /// method in the list.
437
437
pub trait Itertools : Iterator {
438
438
// adaptors
439
439
You can’t perform that action at this time.
0 commit comments