TRPL: Tiny incoherence in UFCS example.

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

r? @steveklabnik
This commit is contained in:
Toni Cárdenas 2015-04-28 11:10:01 +02:00
parent da2276e293
commit df1768d8eb

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