From 16219deb5c87bcc85f4c28dff7d83705abbcfe19 Mon Sep 17 00:00:00 2001 From: Kaiyin Zhong Date: Wed, 4 May 2016 23:29:28 +0200 Subject: [PATCH] Update iterator.rs --- src/libcore/iter/iterator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/iter/iterator.rs b/src/libcore/iter/iterator.rs index c13512a399ad..b80f77c0d25a 100644 --- a/src/libcore/iter/iterator.rs +++ b/src/libcore/iter/iterator.rs @@ -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