diff options
| author | Adolfo OchagavĂa <aochagavia92@gmail.com> | 2014-04-27 16:50:55 +0200 |
|---|---|---|
| committer | Adolfo OchagavĂa <aochagavia92@gmail.com> | 2014-04-27 16:50:55 +0200 |
| commit | af064c7bb0ec0f5eedd9d5d7e01a236db413c7a7 (patch) | |
| tree | f75a38f48e86816c9960686a9172634e159ba3ac /src/libstd | |
| parent | b2a8fae84c290f6dbbff769de7f59f76a9400103 (diff) | |
| download | rust-af064c7bb0ec0f5eedd9d5d7e01a236db413c7a7.tar.gz rust-af064c7bb0ec0f5eedd9d5d7e01a236db413c7a7.zip | |
Fixed typo in std::iter
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/iter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/iter.rs b/src/libstd/iter.rs index d895331752f..18532c39443 100644 --- a/src/libstd/iter.rs +++ b/src/libstd/iter.rs @@ -306,7 +306,7 @@ pub trait Iterator<A> { Take{iter: self, n: n} } - /// Creates a new iterator which behaves in a similar fashion to foldl. + /// Creates a new iterator which behaves in a similar fashion to fold. /// There is a state which is passed between each iteration and can be /// mutated as necessary. The yielded values from the closure are yielded /// from the Scan instance when not None. |
