about summary refs log tree commit diff
path: root/src/libstd/vec.rs
diff options
context:
space:
mode:
authorEduard Burtescu <edy.burt@gmail.com>2014-01-12 02:25:51 +0200
committerEduard Burtescu <edy.burt@gmail.com>2014-01-12 02:26:04 +0200
commit509fc92a9bb6f9a251308476ebf4e76795df60bf (patch)
tree06b6f708400f1c7ce8ece748232263d4af3d3a56 /src/libstd/vec.rs
parent68ebe8141a9d469ed7a7081e7a4a9ff4c82fbff7 (diff)
downloadrust-509fc92a9bb6f9a251308476ebf4e76795df60bf.tar.gz
rust-509fc92a9bb6f9a251308476ebf4e76795df60bf.zip
Removed remnants of `@mut` and `~mut` from comments and the type system.
Diffstat (limited to 'src/libstd/vec.rs')
-rw-r--r--src/libstd/vec.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/libstd/vec.rs b/src/libstd/vec.rs
index 257a1e6340f..61e78b68adc 100644
--- a/src/libstd/vec.rs
+++ b/src/libstd/vec.rs
@@ -1837,11 +1837,8 @@ impl<T:Eq> OwnedEqVector<T> for ~[T] {
     fn dedup(&mut self) {
         unsafe {
             // Although we have a mutable reference to `self`, we cannot make
-            // *arbitrary* changes. There exists the possibility that this
-            // vector is contained with an `@mut` box and hence is still
-            // readable by the outside world during the `Eq` comparisons.
-            // Moreover, those comparisons could fail, so we must ensure
-            // that the vector is in a valid state at all time.
+            // *arbitrary* changes. The `Eq` comparisons could fail, so we
+            // must ensure that the vector is in a valid state at all time.
             //
             // The way that we handle this is by using swaps; we iterate
             // over all the elements, swapping as we go so that at the end