I hate READMEs.

This commit is contained in:
Tim Kuehn
2017-02-16 17:57:17 -08:00
parent db9c23058d
commit fea8d5eb1d

View File

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