diff --git a/src/doc/rust.md b/src/doc/rust.md index 4530d3d443c92..6919bcfeb7a28 100644 --- a/src/doc/rust.md +++ b/src/doc/rust.md @@ -1402,7 +1402,7 @@ to pointers to the trait name, used as a type. let myshape: Box = box mycircle as Box; ~~~~ -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,