Skip to content

Commit

Permalink
auto merge of rust-lang#14103 : alan-andrade/rust/manual-smallfix, r=…
Browse files Browse the repository at this point in the history
…alexcrichton

Hi,

I believe the word "managed" doesn't make sense here anymore. It's just a box.
  • Loading branch information
bors committed May 11, 2014
2 parents 2877a4e + 4e1f239 commit 032510b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 032510b

Please sign in to comment.