From 50fb669241619dbef050f4d27cebc811468f00b5 Mon Sep 17 00:00:00 2001 From: Andrew Paseltiner Date: Thu, 14 May 2015 15:57:33 -0400 Subject: [PATCH] s/Iterater/Iterator/ --- src/libstd/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index c0d8d8eacf797..171b653f60c17 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,