diff options
| author | bors <bors@rust-lang.org> | 2019-03-03 08:47:51 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-03-03 08:47:51 +0000 |
| commit | f565cdd6144a72dc81032081d7790f38a4af26b8 (patch) | |
| tree | b172ddaed4c5fd5b36853ac418039f67d667c0e7 /src/liballoc | |
| parent | ba43811a07f13975640e58e6acb3ba3d1399cf78 (diff) | |
| parent | 946e670bce9f1e123dffce485fc979a96edbb0b8 (diff) | |
| download | rust-f565cdd6144a72dc81032081d7790f38a4af26b8.tar.gz rust-f565cdd6144a72dc81032081d7790f38a4af26b8.zip | |
Auto merge of #58866 - kennytm:rollup, r=kennytm
Rollup of 14 pull requests
Successful merges:
- #58730 (Have all methods of Filter and FilterMap use internal iteration)
- #58780 (ManuallyDrop != MaybeUninit)
- #58782 (Replace `s` with `self` in docs for str methods taking self.)
- #58785 (allow specifying attributes for tool lints)
- #58802 (Ensure `record_layout_for_printing()` is inlined.)
- #58821 (Fixed a syntax error in the pin docs)
- #58830 (tidy: deny(rust_2018_idioms))
- #58832 (Revert switching to GCP on AppVeyor)
- #58833 (tools/rustbook: deny(rust_2018_idioms))
- #58835 (tools/remote-test-{client,server}: deny(rust_2018_idioms))
- #58838 (Fix typo in Vec#resize_with documentation)
- #58842 (Forbid duplicating Cargo as a dependency)
- #58852 (Update toolchain to build NetBSD release)
- #58865 (Fix C-variadic function printing)
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/vec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs index 229dafc5fdc..947ce354ae7 100644 --- a/src/liballoc/vec.rs +++ b/src/liballoc/vec.rs @@ -1260,7 +1260,7 @@ impl<T> Vec<T> { /// This method uses a closure to create new values on every push. If /// you'd rather [`Clone`] a given value, use [`resize`]. If you want /// to use the [`Default`] trait to generate values, you can pass - /// [`Default::default()`] as the second argument.. + /// [`Default::default()`] as the second argument. /// /// # Examples /// |
