From 0d974eecd3d5beefc3b0649dea9fcde7dacd70a3 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Thu, 7 Aug 2014 11:27:06 -0400 Subject: [PATCH] fix grammar in Vec.retain's doc comment --- src/libcollections/vec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ///