Skip to content

Commit 2c29392

Browse files
authored
Rollup merge of rust-lang#45681 - Ljzn:patch-1, r=kennytm
Fix typo.
2 parents 1815265 + bf95f9f commit 2c29392

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liballoc/raw_vec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ impl<T, A: Alloc> RawVec<T, A> {
114114
impl<T> RawVec<T, Heap> {
115115
/// Creates the biggest possible RawVec (on the system heap)
116116
/// without allocating. If T has positive size, then this makes a
117-
/// RawVec with capacity 0. If T has 0 size, then it it makes a
117+
/// RawVec with capacity 0. If T has 0 size, then it makes a
118118
/// RawVec with capacity `usize::MAX`. Useful for implementing
119119
/// delayed allocation.
120120
pub fn new() -> Self {

0 commit comments

Comments
 (0)