Skip to content

Commit 50722b2

Browse files
committed
Fix documentation of HomogeneousTuple (2) et al
1 parent 5145fc2 commit 50722b2

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
@@ -660,7 +660,7 @@ pub trait Itertools : Iterator {
660660
}
661661

662662
/// Return an iterator over all contiguous windows producing tuples of
663-
/// a specific size (up to 4).
663+
/// a specific size (up to 12).
664664
///
665665
/// `tuple_windows` clones the iterator elements so that they can be
666666
/// part of successive windows, this makes it most suited for iterators
@@ -702,7 +702,7 @@ pub trait Itertools : Iterator {
702702

703703
/// Return an iterator over all windows, wrapping back to the first
704704
/// 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).
706706
///
707707
/// `circular_tuple_windows` clones the iterator elements so that they can be
708708
/// part of successive windows, this makes it most suited for iterators
@@ -735,7 +735,7 @@ pub trait Itertools : Iterator {
735735
tuple_impl::circular_tuple_windows(self)
736736
}
737737
/// Return an iterator that groups the items in tuples of a specific size
738-
/// (up to 4).
738+
/// (up to 12).
739739
///
740740
/// See also the method [`.next_tuple()`](Itertools::next_tuple).
741741
///

0 commit comments

Comments
 (0)