about summary refs log tree commit diff
path: root/src/libstd/iter.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/iter.rs')
-rw-r--r--src/libstd/iter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/iter.rs b/src/libstd/iter.rs
index e5a89fc42e1..7516a3ddf54 100644
--- a/src/libstd/iter.rs
+++ b/src/libstd/iter.rs
@@ -883,7 +883,7 @@ pub trait OrdIterator<A> {
     /// ```
     fn min(&mut self) -> Option<A>;
 
-    /// `min_max` finds the mininum and maximum elements in the iterator.
+    /// `min_max` finds the minimum and maximum elements in the iterator.
     ///
     /// The return type `MinMaxResult` is an enum of three variants:
     /// - `NoElements` if the iterator is empty.