diff --git a/src/libcore/slice.rs b/src/libcore/slice.rs index a0e978f783d73..72d326076384c 100644 --- a/src/libcore/slice.rs +++ b/src/libcore/slice.rs @@ -554,7 +554,6 @@ fn slice_index_order_fail(index: usize, end: usize) -> ! { panic!("slice index starts at {} but ends at {}", index, end); } -// FIXME implement indexing with inclusive ranges /// Implements slicing with syntax `&self[begin .. end]`. /// @@ -622,7 +621,7 @@ impl ops::Index> for [T] { /// Implements slicing with syntax `&self[..]`. /// -/// Returns a slice of the whole slice. This operation can not panic. +/// Returns a slice of the whole slice. This operation cannot panic. /// /// Equivalent to `&self[0 .. self.len()]` #[stable(feature = "rust1", since = "1.0.0")]