about summary refs log tree commit diff
path: root/src/libcollections/enum_set.rs
diff options
context:
space:
mode:
authorSrinivas Reddy Thatiparthy <thatiparthysreenivas@gmail.com>2016-12-20 09:54:00 +0530
committerSrinivas Reddy Thatiparthy <thatiparthysreenivas@gmail.com>2016-12-20 09:54:00 +0530
commit6414e67dbaa27f8638b01a33f49e462e87ecfab3 (patch)
treef29af576e5be30f3fea9c08ea2eeb5add82cd135 /src/libcollections/enum_set.rs
parent94ae2a2e6791e0c4ab6fba836b2b09a07f2d3c8a (diff)
downloadrust-6414e67dbaa27f8638b01a33f49e462e87ecfab3.tar.gz
rust-6414e67dbaa27f8638b01a33f49e462e87ecfab3.zip
run rustfmt on libcollections folder
Diffstat (limited to 'src/libcollections/enum_set.rs')
-rw-r--r--src/libcollections/enum_set.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcollections/enum_set.rs b/src/libcollections/enum_set.rs
index 79e0021b148..87bc5e59ef7 100644
--- a/src/libcollections/enum_set.rs
+++ b/src/libcollections/enum_set.rs
@@ -276,7 +276,8 @@ impl<E: CLike> FromIterator<E> for EnumSet<E> {
     }
 }
 
-impl<'a, E> IntoIterator for &'a EnumSet<E> where E: CLike
+impl<'a, E> IntoIterator for &'a EnumSet<E>
+    where E: CLike
 {
     type Item = E;
     type IntoIter = Iter<E>;