Skip to content

Commit 16219de

Browse files
committed
Update iterator.rs
1 parent 2ca3120 commit 16219de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/iter/iterator.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ pub trait Iterator {
214214
/// Like most indexing operations, the count starts from zero, so `nth(0)`
215215
/// returns the first value, `nth(1)` the second, and so on.
216216
///
217-
/// `nth()` will return `None` if `n` >= the length of the
217+
/// `nth()` will return `None` if `n` is greater than or equal to the length of the
218218
/// iterator.
219219
///
220220
/// # Examples

0 commit comments

Comments
 (0)