about summary refs log tree commit diff
path: root/compiler/rustc_data_structures
diff options
context:
space:
mode:
authorRyan Levick <rylev@users.noreply.github.com>2021-09-06 12:38:55 +0200
committerGitHub <noreply@github.com>2021-09-06 12:38:55 +0200
commit5f09e9331803afee9d82085916e18bede3fca00e (patch)
tree083550d47b9472b8e90cee790d9ba5f4a1bb1330 /compiler/rustc_data_structures
parent29a018def407dc623849c8db9443cdc45e464584 (diff)
parentd84a39b35aaf161f9be228ddcc4b8b440c9c1adf (diff)
downloadrust-5f09e9331803afee9d82085916e18bede3fca00e.tar.gz
rust-5f09e9331803afee9d82085916e18bede3fca00e.zip
Rollup merge of #88659 - est31:update_smallvec_name, r=matthewjasper
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.
Diffstat (limited to 'compiler/rustc_data_structures')
-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)]