diff --git a/src/libcollections/slice.rs b/src/libcollections/slice.rs index 64062dc0ccbf8..5b1722b276916 100644 --- a/src/libcollections/slice.rs +++ b/src/libcollections/slice.rs @@ -579,7 +579,7 @@ pub trait MutableVectorAllocating<'a, T> { * * * src - A mutable vector of `T` * * start - The index into `src` to start copying from - * * end - The index into `str` to stop copying from + * * end - The index into `src` to stop copying from */ fn move_from(self, src: Vec, start: uint, end: uint) -> uint; }