Skip to content

Commit

Permalink
auto merge of rust-lang#14465 : Ryman/rust/patch-1, r=alexcrichton
Browse files Browse the repository at this point in the history
  • Loading branch information
bors committed May 28, 2014
2 parents dc5ce0a + ada85a2 commit aa15195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -1435,7 +1435,7 @@ trait Circle : Shape { fn radius() -> f64; }
~~~~

the syntax `Circle : Shape` means that types that implement `Circle` must also have an implementation for `Shape`.
Multiple supertraits are separated by spaces, `trait Circle : Shape Eq { }`.
Multiple supertraits are separated by `+`, `trait Circle : Shape + Eq { }`.
In an implementation of `Circle` for a given type `T`, methods can refer to `Shape` methods,
since the typechecker checks that any type with an implementation of `Circle` also has an implementation of `Shape`.

Expand Down

0 comments on commit aa15195

Please sign in to comment.