aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/util/vec.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/util/vec.rs')
-rw-r--r--src/components/util/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/util/vec.rs b/src/components/util/vec.rs
index 2fabf8455ef..aad8da7d04e 100644
--- a/src/components/util/vec.rs
+++ b/src/components/util/vec.rs
@@ -65,7 +65,7 @@ fn test_match<T: Eq>(b: &T, a: Option<&T>) -> bool {
None => false,
Some(t) => t == b
}
-}
+}
pub fn zip_copies<A: Clone, B: Clone>(avec: &[A], bvec: &[B]) -> ~[(A,B)] {
avec.iter().map(|x| x.clone())