about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-05-14 20:30:43 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-05-14 20:30:43 -0400
commit8d522746f380abfac604e99a43d762c3fb988c48 (patch)
tree35bf461777f2283033000dd2072478c83e383108
parentaa560115b0568b2ac5019eb2795a07b58fb05bfa (diff)
parent50fb669241619dbef050f4d27cebc811468f00b5 (diff)
downloadrust-8d522746f380abfac604e99a43d762c3fb988c48.tar.gz
rust-8d522746f380abfac604e99a43d762c3fb988c48.zip
Rollup merge of #25414 - apasel422:patch-1, r=alexcrichton
-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 220a0ba5755..2e48cde18f3 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,