summary refs log tree commit diff
path: root/src/libstd/collections
diff options
context:
space:
mode:
authorRicho Healey <richo@psych0tik.net>2015-03-28 02:23:20 -0700
committerRicho Healey <richo@psych0tik.net>2015-03-28 02:23:20 -0700
commitcbce6bfbdb140561add2ff258b305e7c7f2ad5c6 (patch)
tree1f30cca11906cea62f06810e0e8ad6d5f787633b /src/libstd/collections
parent0c9de8140b8abdd2d0a83db93746c58e8bc0da2c (diff)
downloadrust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.tar.gz
rust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.zip
cleanup: Remove unused braces in use statements
Diffstat (limited to 'src/libstd/collections')
-rw-r--r--src/libstd/collections/hash/bench.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/bench.rs b/src/libstd/collections/hash/bench.rs
index ca506e8c36f..ac21ae0f0aa 100644
--- a/src/libstd/collections/hash/bench.rs
+++ b/src/libstd/collections/hash/bench.rs
@@ -14,7 +14,7 @@ extern crate test;
 use prelude::v1::*;
 
 use self::test::Bencher;
-use iter::{range_inclusive};
+use iter::range_inclusive;
 
 #[bench]
 fn new_drop(b : &mut Bencher) {