about summary refs log tree commit diff
path: root/src/libcollections/enum_set.rs
diff options
context:
space:
mode:
authorTobias Bucher <tobiasbucher5991@gmail.com>2014-12-09 23:05:16 +0100
committerTobias Bucher <tobiasbucher5991@gmail.com>2014-12-10 12:31:47 +0100
commit4a46f5ebde5ab6a9a219f8b99eafefb61de2286a (patch)
treec63e4b7e44ed5bd7508e79363af4822b49b7252d /src/libcollections/enum_set.rs
parent444a759b84573a5a4cbf3f852b22148e68306ce3 (diff)
downloadrust-4a46f5ebde5ab6a9a219f8b99eafefb61de2286a.tar.gz
rust-4a46f5ebde5ab6a9a219f8b99eafefb61de2286a.zip
Remove references to traits that no longer exist
This specifically means:
- `Deque`
- `Map`
- `Set`
Diffstat (limited to 'src/libcollections/enum_set.rs')
-rw-r--r--src/libcollections/enum_set.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/enum_set.rs b/src/libcollections/enum_set.rs
index 28514b99192..d8dc1f36e05 100644
--- a/src/libcollections/enum_set.rs
+++ b/src/libcollections/enum_set.rs
@@ -20,7 +20,7 @@ use core::num::Int;
 // FIXME(contentions): implement union family of methods? (general design may be wrong here)
 
 #[deriving(Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
-/// A specialized `Set` implementation to use enum types.
+/// A specialized set implementation to use enum types.
 pub struct EnumSet<E> {
     // We must maintain the invariant that no bits are set
     // for which no variant exists