about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-05-19 18:47:16 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-05-19 18:47:16 +0530
commit3bb54a3362a5eae45b345b6cfa690dd863f80fdd (patch)
tree381b989933e4671a38e54d2fd1e43e03e85a2097
parent9d5e621c6d3a58910db40ac4b5947ac29a075899 (diff)
parentb460e4516d79d1f13b97625ee39246290dcff022 (diff)
downloadrust-3bb54a3362a5eae45b345b6cfa690dd863f80fdd.tar.gz
rust-3bb54a3362a5eae45b345b6cfa690dd863f80fdd.zip
Rollup merge of #25591 - rick68:patch-2, r=alexcrichton
fixed a mistake.
-rw-r--r--src/libcore/iter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs
index 091342226e0..ed7cdbbb6e2 100644
--- a/src/libcore/iter.rs
+++ b/src/libcore/iter.rs
@@ -3114,7 +3114,7 @@ pub mod order {
     }
 
     /// Returns `a` < `b` lexicographically (Using partial order, `PartialOrd`)
-    pub fn lt<R: Iterator, L: Iterator>(mut a: L, mut b: R) -> bool where
+    pub fn lt<L: Iterator, R: Iterator>(mut a: L, mut b: R) -> bool where
         L::Item: PartialOrd<R::Item>,
     {
         loop {