diff options
| author | bors <bors@rust-lang.org> | 2014-05-11 08:01:43 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-11 08:01:43 -0700 |
| commit | 032510bae206a789ce9a18f1c8d692f6120591ab (patch) | |
| tree | b37785dc8a19a3e5695e40374fc9d1832836df63 /src | |
| parent | 2877a4e9897610c7bc64cf6860a7c4c1cdbbc307 (diff) | |
| parent | 4e1f239721a1369291f3bba4bbc0d5f12edbf51f (diff) | |
| download | rust-032510bae206a789ce9a18f1c8d692f6120591ab.tar.gz rust-032510bae206a789ce9a18f1c8d692f6120591ab.zip | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/rust.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rust.md b/src/doc/rust.md index 4530d3d443c..6919bcfeb7a 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<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, |
