File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -660,7 +660,7 @@ pub trait Itertools : Iterator {
660
660
}
661
661
662
662
/// Return an iterator over all contiguous windows producing tuples of
663
- /// a specific size (up to 4 ).
663
+ /// a specific size (up to 12 ).
664
664
///
665
665
/// `tuple_windows` clones the iterator elements so that they can be
666
666
/// part of successive windows, this makes it most suited for iterators
@@ -702,7 +702,7 @@ pub trait Itertools : Iterator {
702
702
703
703
/// Return an iterator over all windows, wrapping back to the first
704
704
/// elements when the window would otherwise exceed the length of the
705
- /// iterator, producing tuples of a specific size (up to 4 ).
705
+ /// iterator, producing tuples of a specific size (up to 12 ).
706
706
///
707
707
/// `circular_tuple_windows` clones the iterator elements so that they can be
708
708
/// part of successive windows, this makes it most suited for iterators
@@ -735,7 +735,7 @@ pub trait Itertools : Iterator {
735
735
tuple_impl:: circular_tuple_windows ( self )
736
736
}
737
737
/// Return an iterator that groups the items in tuples of a specific size
738
- /// (up to 4 ).
738
+ /// (up to 12 ).
739
739
///
740
740
/// See also the method [`.next_tuple()`](Itertools::next_tuple).
741
741
///
You can’t perform that action at this time.
0 commit comments