diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs index e5f9b2513e277..0f3e611f1ad2d 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -//! A growable list type, written `Vec` but pronounced 'vector.' +//! A growable list type with heap-allocated contents, written `Vec` but pronounced 'vector.' //! //! Vectors have `O(1)` indexing, push (to the end) and pop (from the end). //!