about summary refs log tree commit diff
path: root/src/libstd/vec.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-07-09 15:13:40 -0700
committerbors <bors@rust-lang.org>2013-07-09 15:13:40 -0700
commit137d1fb210a844a76f89d7355a1aaf9f7a88af33 (patch)
tree79aa81625da93344be55a61eb80c8d215dd4a808 /src/libstd/vec.rs
parente388a80c234d628c4d1fab77dc3e3f2c04cbefc5 (diff)
parent31114acdd7da8f2826558b11adea96d1c561aabd (diff)
downloadrust-137d1fb210a844a76f89d7355a1aaf9f7a88af33.tar.gz
rust-137d1fb210a844a76f89d7355a1aaf9f7a88af33.zip
auto merge of #7657 : thestinger/rust/rollup, r=thestinger
d3be8ab r=brson
05eb3cf r=thestinger
c80f4e1 r=huonw
8c27af1 r=huonw
0eee0b6 r=cmr
ea2756a r=thestinger
Diffstat (limited to 'src/libstd/vec.rs')
-rw-r--r--src/libstd/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/vec.rs b/src/libstd/vec.rs
index 309973def80..2d730b7a6a2 100644
--- a/src/libstd/vec.rs
+++ b/src/libstd/vec.rs
@@ -1771,7 +1771,7 @@ impl<'self,T> MutableVector<'self, T> for &'self mut [T] {
 
 }
 
-/// Trait for ~[T] where T is Cloneable
+/// Trait for &[T] where T is Cloneable
 pub trait MutableCloneableVector<T> {
     /// Copies as many elements from `src` as it can into `self`
     /// (the shorter of self.len() and src.len()). Returns the number of elements copied.