diff options
| author | bors <bors@rust-lang.org> | 2014-10-14 19:22:22 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-10-14 19:22:22 +0000 |
| commit | 5e1e2456ed7e06c2341893118659efaee35fc391 (patch) | |
| tree | b659cd3128d774b20dcbe1db376c81b687cef817 | |
| parent | 181538a135d2e6396c80ca69c7f65f7cfb2c9753 (diff) | |
| parent | 0e1e9cbb136e36ef30820fdee72eab5b11a8dec3 (diff) | |
| download | rust-5e1e2456ed7e06c2341893118659efaee35fc391.tar.gz rust-5e1e2456ed7e06c2341893118659efaee35fc391.zip | |
auto merge of #18029 : Ms2ger/rust/patch-1, r=huonw
| -rw-r--r-- | src/libcore/iter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 9799e9d3980..4b970dc3d25 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -873,7 +873,7 @@ pub trait OrdIterator<A> { /// 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 /// |
