diff --git a/library/alloc/src/vec/mod.rs b/library/alloc/src/vec/mod.rs index fffdc2c3ac0..6fdaa8b950a 100644 --- a/library/alloc/src/vec/mod.rs +++ b/library/alloc/src/vec/mod.rs @@ -148,7 +148,7 @@ use self::spec_extend::SpecExtend; #[cfg(not(no_global_oom_handling))] mod spec_extend; -/// A contiguous growable array type, written as `Vec` and pronounced 'vector'. +/// A contiguous growable array type, written as `Vec`, short for 'vector'. /// /// # Examples ///