From 0e1e9cbb136e36ef30820fdee72eab5b11a8dec3 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Tue, 14 Oct 2014 12:11:07 +0200 Subject: [PATCH] Fix the formatting of the documentation for OrdIterator.min_max. --- src/libcore/iter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 9799e9d398055..4b970dc3d25f6 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -873,7 +873,7 @@ pub trait OrdIterator { /// element in the iterator and all elements are equal. /// /// On an iterator of length `n`, `min_max` does `1.5 * n` comparisons, - /// and so faster than calling `min` and `max separately which does `2 * n` comparisons. + /// and so is faster than calling `min` and `max` separately which does `2 * n` comparisons. /// /// # Example ///