about summary refs log tree commit diff
path: root/src/libstd/collections
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-08-06 20:49:52 -0700
committerBrian Anderson <banderson@mozilla.com>2014-08-13 11:30:15 -0700
commit76d46af6d405ac29d2d508705eacdcffad63e4c1 (patch)
tree4240dae68a3a3837d36924bd0ca8014a75daab1f /src/libstd/collections
parent12e851208ddd40ca3e1b56badf5eaa32986f55a8 (diff)
downloadrust-76d46af6d405ac29d2d508705eacdcffad63e4c1.tar.gz
rust-76d46af6d405ac29d2d508705eacdcffad63e4c1.zip
core: Rename ImmutableEqSlice to ImmutablePartialEqSlice
This is in the prelude and won't break much code.

[breaking-change]
Diffstat (limited to 'src/libstd/collections')
-rw-r--r--src/libstd/collections/hashmap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/hashmap.rs b/src/libstd/collections/hashmap.rs
index 1bb92c487c6..b8f8bd41a2d 100644
--- a/src/libstd/collections/hashmap.rs
+++ b/src/libstd/collections/hashmap.rs
@@ -2743,7 +2743,7 @@ mod test_set {
     use prelude::*;
 
     use super::HashSet;
-    use slice::ImmutableEqSlice;
+    use slice::ImmutablePartialEqSlice;
     use collections::Collection;
 
     #[test]