about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlan Andrade <alan.andradec@gmail.com>2014-05-10 17:30:59 -0700
committerAlan Andrade <alan.andradec@gmail.com>2014-05-10 17:30:59 -0700
commit4e1f239721a1369291f3bba4bbc0d5f12edbf51f (patch)
tree0655639c31f2397265bf52e68a220405a91e064e
parent11571cd9c1cde63c3b46ca65e608b84647785ac8 (diff)
downloadrust-4e1f239721a1369291f3bba4bbc0d5f12edbf51f.tar.gz
rust-4e1f239721a1369291f3bba4bbc0d5f12edbf51f.zip
remove the word managed from the trait explanation
-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,