Auto merge of #24891 - tcard:patch-1, r=steveklabnik

`Type` should be `Trait` to match the next example line.

r? @steveklabnik
This commit is contained in:
bors 2015-04-28 14:21:22 +00:00
commit d8b64c7fb2

View File

@ -89,7 +89,7 @@ not, and so we need to pass an explicit `&b`.
The form of UFCS we just talked about:
```rust,ignore
Type::method(args);
Trait::method(args);
```
Is a short-hand. Theres an expanded form of this thats needed in some