about summary refs log tree commit diff
path: root/src/doc/rust.md
diff options
context:
space:
mode:
authorRyman <haqkrs@gmail.com>2014-05-27 21:40:50 +0100
committerRyman <haqkrs@gmail.com>2014-05-27 21:40:50 +0100
commitada85a202b05283ffdad56c5ae0d922bd08cd9c2 (patch)
tree18ede58caef433f57feac3948a937c89f826c146 /src/doc/rust.md
parent5811d2bd966716cea1d7653fa7a7cec64171a532 (diff)
downloadrust-ada85a202b05283ffdad56c5ae0d922bd08cd9c2.tar.gz
rust-ada85a202b05283ffdad56c5ae0d922bd08cd9c2.zip
rust manual: supertraits seperator is wrong
Diffstat (limited to 'src/doc/rust.md')
-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 d860c50f0a2..5fd686543db 100644
--- a/src/doc/rust.md
+++ b/src/doc/rust.md
@@ -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`.