doc: "moves" has a specific meaning in Rust, so avoid using it here

This commit is contained in:
Tshepang Lekhonkhobe 2016-01-14 20:52:51 +02:00
parent 02fbf31fb2
commit 7d446ce555

View File

@ -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
///