about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2017-06-02 10:59:19 -0700
committerManish Goregaokar <manishsmail@gmail.com>2017-06-02 10:59:19 -0700
commitfdb2837bd90ea3a7209cfe56a8f99b37b4f6b373 (patch)
treeb4833d29c5835165a241fcc76bd39b4cbeebda0c
parentd7798c3d179c7c18736fc0465e7ba6618c575a34 (diff)
downloadrust-fdb2837bd90ea3a7209cfe56a8f99b37b4f6b373.tar.gz
rust-fdb2837bd90ea3a7209cfe56a8f99b37b4f6b373.zip
Vec<T> is pronounced 'vec'
-rw-r--r--src/libcollections/vec.rs2
1 files changed, 1 insertions, 1 deletions
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<T>` but pronounced 'vector.'
+//! `Vec<T>`.
 //!
 //! Vectors have `O(1)` indexing, amortized `O(1)` push (to the end) and
 //! `O(1)` pop (from the end).