about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAndrew Paseltiner <apaseltiner@gmail.com>2015-05-14 15:57:33 -0400
committerAndrew Paseltiner <apaseltiner@gmail.com>2015-05-14 15:57:33 -0400
commit50fb669241619dbef050f4d27cebc811468f00b5 (patch)
treedf0650e84a93d44493705d7c90412463ad561e22 /src/libstd
parentaf522079a2e13046cbf5f426874d7f6b672c501e (diff)
downloadrust-50fb669241619dbef050f4d27cebc811468f00b5.tar.gz
rust-50fb669241619dbef050f4d27cebc811468f00b5.zip
s/Iterater/Iterator/
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index c0d8d8eacf7..171b653f60c 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -40,7 +40,7 @@
 //! [`result`](result/index.html) modules define optional and
 //! error-handling types, `Option` and `Result`. The
 //! [`iter`](iter/index.html) module defines Rust's iterator trait,
-//! [`Iterater`](iter/trait.Iterator.html), which works with the `for`
+//! [`Iterator`](iter/trait.Iterator.html), which works with the `for`
 //! loop to access collections.
 //!
 //! The common container type, `Vec`, a growable vector backed by an array,