We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9ebb81 commit 22a876eCopy full SHA for 22a876e
src/lib.rs
@@ -680,7 +680,7 @@ pub trait Itertools : Iterator {
680
/// let it = (0..8).step(3);
681
/// itertools::assert_equal(it, vec![0, 3, 6]);
682
/// ```
683
- #[deprecated(note="Use std .step_by() instead", since = "0.8")]
+ #[deprecated(note="Use std .step_by() instead", since="0.8")]
684
#[allow(deprecated)]
685
fn step(self, n: usize) -> Step<Self>
686
where Self: Sized
@@ -858,7 +858,7 @@ pub trait Itertools : Iterator {
858
where Self: Sized,
859
Self::Item: IntoIterator,
860
F: FnMut(&<Self::Item as IntoIterator>::Item,
861
- &<Self::Item as IntoIterator>::Item) -> bool
+ &<Self::Item as IntoIterator>::Item) -> bool
862
{
863
kmerge_by(self, first)
864
}
0 commit comments