We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dc5ce0a + ada85a2 commit aa15195Copy full SHA for aa15195
src/doc/rust.md
@@ -1435,7 +1435,7 @@ trait Circle : Shape { fn radius() -> f64; }
1435
~~~~
1436
1437
the syntax `Circle : Shape` means that types that implement `Circle` must also have an implementation for `Shape`.
1438
-Multiple supertraits are separated by spaces, `trait Circle : Shape Eq { }`.
+Multiple supertraits are separated by `+`, `trait Circle : Shape + Eq { }`.
1439
In an implementation of `Circle` for a given type `T`, methods can refer to `Shape` methods,
1440
since the typechecker checks that any type with an implementation of `Circle` also has an implementation of `Shape`.
1441
0 commit comments