Skip to content

Commit

Permalink
Update iterator.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
kindlychung committed May 4, 2016
1 parent 2ca3120 commit 16219de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/iter/iterator.rs
Expand Up @@ -214,7 +214,7 @@ pub trait Iterator {
/// Like most indexing operations, the count starts from zero, so `nth(0)`
/// returns the first value, `nth(1)` the second, and so on.
///
/// `nth()` will return `None` if `n` >= the length of the
/// `nth()` will return `None` if `n` is greater than or equal to the length of the
/// iterator.
///
/// # Examples
Expand Down

0 comments on commit 16219de

Please sign in to comment.