diff options
| author | bors <bors@rust-lang.org> | 2017-11-04 06:59:29 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-11-04 06:59:29 +0000 |
| commit | 9acc3331e187d329d29a70c788c44e25a79edf45 (patch) | |
| tree | edc666d4c7ea78ab757aa096965f361a4ea1cbae /src/liballoc | |
| parent | a4541525d5aa2cbf9c15e89cde513792e22a0318 (diff) | |
| parent | e3b25a59421d471d3c198bdbed60c8ba60e62376 (diff) | |
| download | rust-9acc3331e187d329d29a70c788c44e25a79edf45.tar.gz rust-9acc3331e187d329d29a70c788c44e25a79edf45.zip | |
Auto merge of #45755 - kennytm:rollup, r=kennytm
Rollup of 9 pull requests - Successful merges: #45548, #45610, #45639, #45669, #45681, #45718, #45722, #45739, #45746 - Failed merges:
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 { |
