fix comments in example about types

This commit is contained in:
Andrew Straw 2015-06-09 20:49:52 +02:00
parent 7b0f2af27f
commit 1fff553fe7

View file

@ -120,7 +120,7 @@ implement `Convert` like so:
```rust
impl Convert<uint> for int { ... } // int -> uint
impl Convert<int> for uint { ... } // uint -> uint
impl Convert<int> for uint { ... } // uint -> int
```
Now imagine there is some code like the following: