Skip to content

Commit 22a876e

Browse files
committed
formating
1 parent f9ebb81 commit 22a876e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ pub trait Itertools : Iterator {
680680
/// let it = (0..8).step(3);
681681
/// itertools::assert_equal(it, vec![0, 3, 6]);
682682
/// ```
683-
#[deprecated(note="Use std .step_by() instead", since = "0.8")]
683+
#[deprecated(note="Use std .step_by() instead", since="0.8")]
684684
#[allow(deprecated)]
685685
fn step(self, n: usize) -> Step<Self>
686686
where Self: Sized
@@ -858,7 +858,7 @@ pub trait Itertools : Iterator {
858858
where Self: Sized,
859859
Self::Item: IntoIterator,
860860
F: FnMut(&<Self::Item as IntoIterator>::Item,
861-
&<Self::Item as IntoIterator>::Item) -> bool
861+
&<Self::Item as IntoIterator>::Item) -> bool
862862
{
863863
kmerge_by(self, first)
864864
}

0 commit comments

Comments
 (0)