diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs index 1f2d176ab9b..aa80a131811 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -782,11 +782,11 @@ impl Vec { self.as_mut_slice().sort_by(compare) } - /// Returns a slice of `self` between `start` and `end`. + /// Returns a slice of self spanning the interval [`start`, `end`). /// /// # Failure /// - /// Fails when `start` or `end` point outside the bounds of `self`, or when + /// Fails when the slice (or part of it) is outside the bounds of self, or when /// `start` > `end`. /// /// # Example diff --git a/src/libcore/slice.rs b/src/libcore/slice.rs index 6312d9115ef..0257911e8c0 100644 --- a/src/libcore/slice.rs +++ b/src/libcore/slice.rs @@ -366,9 +366,9 @@ impl Container for ~[T] { /// Extension methods for vectors pub trait ImmutableVector<'a, T> { /** - * Returns a slice of self between `start` and `end`. + * Returns a slice of self spanning the interval [`start`, `end`). * - * Fails when `start` or `end` point outside the bounds of self, + * Fails when the slice (or part of it) is outside the bounds of self, * or when `start` > `end`. */ fn slice(&self, start: uint, end: uint) -> &'a [T];