diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs index 6618906cf69..39fe57038b0 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -1318,7 +1318,7 @@ impl Vec { /// Retains only the elements specified by the predicate. /// /// In other words, remove all elements `e` such that `f(&e)` returns false. - /// This method operates in place and preserves the order the retained elements. + /// This method operates in place and preserves the order of the retained elements. /// /// # Example ///