From fdb2837bd90ea3a7209cfe56a8f99b37b4f6b373 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Fri, 2 Jun 2017 10:59:19 -0700 Subject: [PATCH] Vec is pronounced 'vec' --- 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 3ef8438bc0b..2de27725e95 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -9,7 +9,7 @@ // except according to those terms. //! A contiguous growable array type with heap-allocated contents, written -//! `Vec` but pronounced 'vector.' +//! `Vec`. //! //! Vectors have `O(1)` indexing, amortized `O(1)` push (to the end) and //! `O(1)` pop (from the end).