about summary refs log tree commit diff
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2021-09-05 06:08:34 +0200
committerest31 <MTest31@outlook.com>2021-09-05 06:10:21 +0200
commitd84a39b35aaf161f9be228ddcc4b8b440c9c1adf (patch)
tree81f9d7eff62f31ea01960a7be80c56ba8d45e740
parent47ab5f7ce27397310bd8359b8db1504fbf8a9b59 (diff)
downloadrust-d84a39b35aaf161f9be228ddcc4b8b440c9c1adf.tar.gz
rust-d84a39b35aaf161f9be228ddcc4b8b440c9c1adf.zip
Remove SmallVector mention
SmallVector is long gone, as it's been first replaced
by OneVector in commit e5e6375352636360add297c1f5a1f37ce71506e9,
which then has been removed entirely in favour of SmallVec in
commit 130a32fa7259d348dc3a684b38e688da398c30bb.
-rw-r--r--compiler/rustc_data_structures/src/thin_vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/thin_vec.rs b/compiler/rustc_data_structures/src/thin_vec.rs
index 00e30473498..b5d2d24736c 100644
--- a/compiler/rustc_data_structures/src/thin_vec.rs
+++ b/compiler/rustc_data_structures/src/thin_vec.rs
@@ -2,7 +2,7 @@ use crate::stable_hasher::{HashStable, StableHasher};
 
 use std::iter::FromIterator;
 
-/// A vector type optimized for cases where this size is usually 0 (cf. `SmallVector`).
+/// A vector type optimized for cases where this size is usually 0 (cf. `SmallVec`).
 /// The `Option<Box<..>>` wrapping allows us to represent a zero sized vector with `None`,
 /// which uses only a single (null) pointer.
 #[derive(Clone, Encodable, Decodable, Debug)]