Fix typo in readme

This commit is contained in:
Tim
2017-04-11 20:30:14 -07:00
committed by GitHub
parent a441fcb771
commit 8cb6ff89cc

View File

@@ -270,7 +270,7 @@ and the following future-based trait:
```rust,ignore
trait FutureService {
type HelloFut = IntoFuture<String, Message>;
type HelloFut: IntoFuture<String, Message>;
fn hello(&mut self, name: String) -> Self::HelloFut;
}