auto merge of #14103 : alan-andrade/rust/manual-smallfix, r=alexcrichton

Hi,

I believe the word "managed" doesn't make sense here anymore. It's just a box.
This commit is contained in:
bors 2014-05-11 08:01:43 -07:00
commit 032510bae2

View File

@ -1402,7 +1402,7 @@ to pointers to the trait name, used as a type.
let myshape: Box<Shape> = box mycircle as Box<Shape>;
~~~~
The resulting value is a managed box containing the value that was cast,
The resulting value is a box containing the value that was cast,
along with information that identifies the methods of the implementation that was used.
Values with a trait type can have [methods called](#method-call-expressions) on them,
for any method in the trait,