diff --git a/library/core/src/slice/mod.rs b/library/core/src/slice/mod.rs index 1dfe899d3e5..1282bb54f00 100644 --- a/library/core/src/slice/mod.rs +++ b/library/core/src/slice/mod.rs @@ -1703,8 +1703,7 @@ pub fn ends_with(&self, needle: &[T]) -> bool /// Returns a subslice with the prefix removed. /// - /// If the slice starts with `prefix`, returns - /// the subslice after the prefix, wrapped in `Some`. + /// If the slice starts with `prefix`, returns the subslice after the prefix, wrapped in `Some`. /// /// If the slice does not start with `prefix`, returns `None`. /// @@ -1738,8 +1737,7 @@ pub fn strip_prefix(&self, prefix: &[T]) -> Option<&[T]> /// Returns a subslice with the suffix removed. /// - /// If the slice ends with `suffix`, returns - /// the subslice before the suffix, wrapped in `Some`. + /// If the slice ends with `suffix`, returns the subslice before the suffix, wrapped in `Some`. /// /// If the slice does not end with `suffix`, returns `None`. ///