rename std::vec -> std::slice

Closes #12702
This commit is contained in:
Daniel Micay
2014-03-08 18:11:52 -05:00
parent 4ca51aeea7
commit ce620320a2
115 changed files with 360 additions and 365 deletions

View File

@@ -20,7 +20,7 @@ use os;
use result::Ok;
use str::StrSlice;
use unstable::running_on_valgrind;
use vec::ImmutableVector;
use slice::ImmutableVector;
// Indicates whether we should perform expensive sanity checks, including rtassert!
// FIXME: Once the runtime matures remove the `true` below to turn off rtassert, etc.