diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs index e5964385b125..c53d3461d1c2 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -1147,7 +1147,8 @@ pub fn clear(&mut self) { self.truncate(0) } - /// Returns the number of elements in the vector. + /// Returns the number of elements in the vector, also referred to + /// as its 'length'. /// /// # Examples ///