about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-05-11 08:01:43 -0700
committerbors <bors@rust-lang.org>2014-05-11 08:01:43 -0700
commit032510bae206a789ce9a18f1c8d692f6120591ab (patch)
treeb37785dc8a19a3e5695e40374fc9d1832836df63 /src
parent2877a4e9897610c7bc64cf6860a7c4c1cdbbc307 (diff)
parent4e1f239721a1369291f3bba4bbc0d5f12edbf51f (diff)
downloadrust-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.md2
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,