diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2016-01-14 14:58:35 -0500 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2016-01-14 14:58:35 -0500 |
| commit | 958bff100aad1b3bcef1d780b3b426685bd30608 (patch) | |
| tree | 1851189b3173120d37f49c0495de51074b082ce8 | |
| parent | b3950b7ca5286739e7408c3380eb1b61ad09083d (diff) | |
| parent | 7d446ce555db74efcab58048ba7d2b8cd21dcca4 (diff) | |
| download | rust-958bff100aad1b3bcef1d780b3b426685bd30608.tar.gz rust-958bff100aad1b3bcef1d780b3b426685bd30608.zip | |
Rollup merge of #30910 - tshepang:improve-description, r=steveklabnik
| -rw-r--r-- | src/liballoc/boxed.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index aa0665182cc..254a5bc3f04 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -222,7 +222,7 @@ impl<T: ?Sized> Drop for IntermediateBox<T> { } impl<T> Box<T> { - /// Allocates memory on the heap and then moves `x` into it. + /// Allocates memory on the heap and then places `x` into it. /// /// # Examples /// |
