diff options
| author | Lance John <rubyminer@foxmail.com> | 2017-11-01 21:02:08 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-01 21:02:08 +0800 |
| commit | bf95f9f1853dc09e7f3c667cdf22e6eb64b48a2f (patch) | |
| tree | a8c0379559529f2879906a6d5631bc9bfd6230df /src/liballoc | |
| parent | 2f581cf9d692781847bede5d966b098a5d09b5e4 (diff) | |
| download | rust-bf95f9f1853dc09e7f3c667cdf22e6eb64b48a2f.tar.gz rust-bf95f9f1853dc09e7f3c667cdf22e6eb64b48a2f.zip | |
Fix typo.
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/raw_vec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/raw_vec.rs b/src/liballoc/raw_vec.rs index 841f9dc6414..dbf1fb1367d 100644 --- a/src/liballoc/raw_vec.rs +++ b/src/liballoc/raw_vec.rs @@ -114,7 +114,7 @@ impl<T, A: Alloc> RawVec<T, A> { impl<T> RawVec<T, Heap> { /// Creates the biggest possible RawVec (on the system heap) /// without allocating. If T has positive size, then this makes a - /// RawVec with capacity 0. If T has 0 size, then it it makes a + /// RawVec with capacity 0. If T has 0 size, then it makes a /// RawVec with capacity `usize::MAX`. Useful for implementing /// delayed allocation. pub fn new() -> Self { |
