Skip to content

Commit fdb2837

Browse files
committed
Vec<T> is pronounced 'vec'
1 parent d7798c3 commit fdb2837

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcollections/vec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// except according to those terms.
1010

1111
//! A contiguous growable array type with heap-allocated contents, written
12-
//! `Vec<T>` but pronounced 'vector.'
12+
//! `Vec<T>`.
1313
//!
1414
//! Vectors have `O(1)` indexing, amortized `O(1)` push (to the end) and
1515
//! `O(1)` pop (from the end).

0 commit comments

Comments
 (0)