Skip to content

Commit d84a39b

Browse files
committed
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.
1 parent 47ab5f7 commit d84a39b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_data_structures/src/thin_vec.rs

Lines changed: 1 addition & 1 deletion
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)