Skip to content

Commit 5f09e93

Browse files
authored
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 e5e6375, which then has been removed entirely in favour of SmallVec in commit 130a32f.
2 parents 29a018d + d84a39b commit 5f09e93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_data_structures/src/thin_vec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use crate::stable_hasher::{HashStable, StableHasher};
22

33
use std::iter::FromIterator;
44

5-
/// A vector type optimized for cases where this size is usually 0 (cf. `SmallVector`).
5+
/// A vector type optimized for cases where this size is usually 0 (cf. `SmallVec`).
66
/// The `Option<Box<..>>` wrapping allows us to represent a zero sized vector with `None`,
77
/// which uses only a single (null) pointer.
88
#[derive(Clone, Encodable, Decodable, Debug)]

0 commit comments

Comments
 (0)