From 7d446ce555db74efcab58048ba7d2b8cd21dcca4 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Thu, 14 Jan 2016 20:52:51 +0200 Subject: [PATCH] doc: "moves" has a specific meaning in Rust, so avoid using it here --- src/liballoc/boxed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index efc28be92a45b..6979c0ebb2d2c 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -222,7 +222,7 @@ impl Drop for IntermediateBox { } impl Box { - /// Allocates memory on the heap and then moves `x` into it. + /// Allocates memory on the heap and then places `x` into it. /// /// # Examples ///