auto merge of #18029 : Ms2ger/rust/patch-1, r=huonw

This commit is contained in:
bors 2014-10-14 19:22:22 +00:00
commit 5e1e2456ed
1 changed files with 1 additions and 1 deletions

View File

@ -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
///