Vec<T> is pronounced 'vec'

This commit is contained in:
Manish Goregaokar 2017-06-02 10:59:19 -07:00
parent d7798c3d17
commit fdb2837bd9

View File

@ -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).