@@ -1819,10 +1819,10 @@ pub trait Itertools: Iterator {
1819
1819
/// ```
1820
1820
/// use itertools::Itertools;
1821
1821
///
1822
- /// let it = vec![2, 2].into_iter().array_permutations();
1822
+ /// let it = vec![- 2, - 2].into_iter().array_permutations();
1823
1823
/// itertools::assert_equal(it, vec![
1824
- /// [2, 2], // Note: these are the same
1825
- /// [2, 2], // Note: these are the same
1824
+ /// [- 2, - 2], // Note: these are the same
1825
+ /// [- 2, - 2], // Note: these are the same
1826
1826
/// ]);
1827
1827
/// ```
1828
1828
///
@@ -1868,10 +1868,10 @@ pub trait Itertools: Iterator {
1868
1868
/// ```
1869
1869
/// use itertools::Itertools;
1870
1870
///
1871
- /// let it = vec![2, 2].into_iter().permutations(2);
1871
+ /// let it = vec![- 2, - 2].into_iter().permutations(2);
1872
1872
/// itertools::assert_equal(it, vec![
1873
- /// vec![2, 2], // Note: these are the same
1874
- /// vec![2, 2], // Note: these are the same
1873
+ /// vec![- 2, - 2], // Note: these are the same
1874
+ /// vec![- 2, - 2], // Note: these are the same
1875
1875
/// ]);
1876
1876
/// ```
1877
1877
///
0 commit comments