Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ pub trait Itertools: Iterator {
///
/// If the input iterator contains fewer than `N` items, no
/// windows are returned. Otherwise, if the input iterator
/// contains `k` items, exactly `k+N-1` windows are returned.
/// contains `k` items, exactly `k-N+1` windows are returned.
///
/// (This formula still applies when `N==0`, and means that `k+1`
/// zero-length windows are returned for `k` input items.)
Expand Down
Loading