Skip to content

Commit 8761fbe

Browse files
meltinglavajswrenn
authored andcommitted
Spelling mistakes fixed.
1 parent 704d732 commit 8761fbe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1147,14 +1147,14 @@ pub trait Itertools : Iterator {
11471147
/// ]);
11481148
/// ```
11491149
///
1150-
/// Note: Combinations does not take into accout the equality of the inner values.
1150+
/// Note: Combinations does not take into account the equality of the iterated values.
11511151
/// ```
11521152
/// use itertools::Itertools;
11531153
///
11541154
/// let it = vec![1, 2, 2].into_iter().combinations(2);
11551155
/// itertools::assert_equal(it, vec![
1156-
/// vec![1, 2], // Note: thise are the same
1157-
/// vec![1, 2], // Note: thise are the same
1156+
/// vec![1, 2], // Note: these are the same
1157+
/// vec![1, 2], // Note: these are the same
11581158
/// vec![2, 2],
11591159
/// ]);
11601160
/// ```

0 commit comments

Comments
 (0)