auto merge of #14799 : mcreinhard/rust/tilde-fix, r=alexcrichton

Replaced `~Drawable` with `Box<Drawable>` in tutorial
This commit is contained in:
bors 2014-06-11 22:02:00 -07:00
commit fce98e5262
1 changed files with 1 additions and 1 deletions

View File

@ -2459,7 +2459,7 @@ fn draw_all(shapes: &[Box<Drawable>]) {
}
~~~~
In this example, there is no type parameter. Instead, the `~Drawable`
In this example, there is no type parameter. Instead, the `Box<Drawable>`
type denotes any owned box value that implements the `Drawable` trait.
To construct such a value, you use the `as` operator to cast a value
to an object: