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 704d732 commit 8761fbeCopy full SHA for 8761fbe
src/lib.rs
@@ -1147,14 +1147,14 @@ pub trait Itertools : Iterator {
1147
/// ]);
1148
/// ```
1149
///
1150
- /// Note: Combinations does not take into accout the equality of the inner values.
+ /// Note: Combinations does not take into account the equality of the iterated values.
1151
1152
/// use itertools::Itertools;
1153
1154
/// let it = vec![1, 2, 2].into_iter().combinations(2);
1155
/// itertools::assert_equal(it, vec![
1156
- /// vec![1, 2], // Note: thise are the same
1157
+ /// vec![1, 2], // Note: these are the same
1158
/// vec![2, 2],
1159
1160
0 commit comments