about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-06-09 18:29:26 -0400
committerGitHub <noreply@github.com>2017-06-09 18:29:26 -0400
commit1fcb6d86dc94dfd145beace6c0d22eafdd0a0d1f (patch)
tree0d54a69b9deed354b80ccf9183b950b03ba93f31 /src
parent9163f338f9079d9214b8b8fa206048f50f99d4c2 (diff)
parentfdb2837bd90ea3a7209cfe56a8f99b37b4f6b373 (diff)
downloadrust-1fcb6d86dc94dfd145beace6c0d22eafdd0a0d1f.tar.gz
rust-1fcb6d86dc94dfd145beace6c0d22eafdd0a0d1f.zip
Rollup merge of #42385 - Manishearth:its-a-vec, r=steveklabnik
Vec<T> is pronounced 'vec'

I've never heard it pronounced "vector". Is this an outdated recommendation?

(or have I been doing it wrong all this time)

r? @steveklabnik
Diffstat (limited to 'src')
-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).