From 8cb6ff89ccddf3d7c66e3cf099d654440a6219d1 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 11 Apr 2017 20:30:14 -0700 Subject: [PATCH] Fix typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d1d15e5..94ceb73 100644 --- a/README.md +++ b/README.md @@ -270,7 +270,7 @@ and the following future-based trait: ```rust,ignore trait FutureService { - type HelloFut = IntoFuture; + type HelloFut: IntoFuture; fn hello(&mut self, name: String) -> Self::HelloFut; }