diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-08-06 20:49:52 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-08-13 11:30:15 -0700 |
| commit | 76d46af6d405ac29d2d508705eacdcffad63e4c1 (patch) | |
| tree | 4240dae68a3a3837d36924bd0ca8014a75daab1f /src/libstd/os.rs | |
| parent | 12e851208ddd40ca3e1b56badf5eaa32986f55a8 (diff) | |
| download | rust-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/os.rs')
| -rw-r--r-- | src/libstd/os.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/os.rs b/src/libstd/os.rs index 6f148eea83c..6a00368f9a2 100644 --- a/src/libstd/os.rs +++ b/src/libstd/os.rs @@ -45,7 +45,7 @@ use path::{Path, GenericPath, BytesContainer}; use ptr::RawPtr; use ptr; use result::{Err, Ok, Result}; -use slice::{Slice, ImmutableSlice, MutableSlice, ImmutableEqSlice}; +use slice::{Slice, ImmutableSlice, MutableSlice, ImmutablePartialEqSlice}; use str::{Str, StrSlice, StrAllocating}; use string::String; use sync::atomic::{AtomicInt, INIT_ATOMIC_INT, SeqCst}; |
