From f1860598ae8fd0798905f395b52c8dc62e6a02c3 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 5 Aug 2016 13:38:35 +0200 Subject: [PATCH] some README typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 055e1c5c653..4abe646889c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ And then, use futures! This library is currently a work in progress, but it is rapidly progressing to the point of stabilization of the internal `Future` and `Stream` traits along -with a number of sourrounding pieces for useful functionality. Some crates are +with a number of surrounding pieces for useful functionality. Some crates are available on crates.io but are likely not functional, so the git repo should be used for now, but that will hopefully change soon! @@ -65,7 +65,7 @@ computations on futures. [Future]: http://alexcrichton.com/futures-rs/futures/trait.Future.html The `Future` trait is driven by two methods, [`poll`][poll] and -[`schedule`][schedule], which all pulling values out of a future and otherwise +[`schedule`][schedule], which allow pulling values out of a future and otherwise getting notified when a future is complete. More documentation can be found on the associated methods themselves.