rust manual: supertraits seperator is wrong
This commit is contained in:
parent
5811d2bd96
commit
ada85a202b
@ -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`.
|
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,
|
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`.
|
since the typechecker checks that any type with an implementation of `Circle` also has an implementation of `Shape`.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user