aboutsummaryrefslogtreecommitdiff
path: root/src/lib/_vec.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/_vec.rs')
-rw-r--r--src/lib/_vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/_vec.rs b/src/lib/_vec.rs
index 1b9f5aaa..decb09f8 100644
--- a/src/lib/_vec.rs
+++ b/src/lib/_vec.rs
@@ -80,7 +80,7 @@ fn map[T,U](&op[T,U] f, &vec[T] v) -> vec[U] {
// but this does not work presently.
let vec[U] u = vec();
for (T ve in v) {
- u += vec(f[T,U](ve));
+ u += vec(f(ve));
}
ret u;
}