about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTobias Bucher <tobiasbucher5991@gmail.com>2014-09-13 01:38:16 +0200
committerTobias Bucher <tobiasbucher5991@gmail.com>2014-09-14 21:35:49 +0200
commit7ccab3ae8aeb1b0d7002187990aaa56b1ff03d28 (patch)
tree8b4570e3c1129ae62a76132c7d1d558bed105177 /src
parent79427f0bc0fff258eae966aa1db5abc089a88aa0 (diff)
downloadrust-7ccab3ae8aeb1b0d7002187990aaa56b1ff03d28.tar.gz
rust-7ccab3ae8aeb1b0d7002187990aaa56b1ff03d28.zip
Added missing `}` from `map_in_place` rebase
Diffstat (limited to 'src')
-rw-r--r--src/libcollections/vec.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs
index be286cbda1e..e45eeed571a 100644
--- a/src/libcollections/vec.rs
+++ b/src/libcollections/vec.rs
@@ -2302,6 +2302,7 @@ mod tests {
         assert_eq!(vec.as_ptr(), ptr);
         assert_eq!(vec.capacity(), 7);
         assert_eq!(vec.len(), 0);
+    }
 
     #[test]
     #[should_fail]