From bc16ad039d32fc53498d9bcb7d4700fa51f89445 Mon Sep 17 00:00:00 2001 From: Ashkan Kiani Date: Thu, 17 Nov 2016 22:20:36 -0800 Subject: [PATCH] Grammar in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index efd5e32bd..6484a9f01 100644 --- a/README.md +++ b/README.md @@ -35,10 +35,10 @@ There are a few small examples showing off how to use this library: ## What is tokio-core? -This crate is a connection `futures`, a zero-cost implementation of futures in -Rust, and `mio` and a crate for zero-cost asynchronous I/O. The types and +This crate is a connection between `futures`, a zero-cost implementation of futures in +Rust, and `mio`, a crate for zero-cost asynchronous I/O. The types and structures implemented in `tokio-core` implement `Future` and `Stream` traits -as appropriate. For example connecting a TCP stream returns a `Future` +as appropriate. For example, connecting a TCP stream returns a `Future` resolving to a TCP stream, and a TCP listener implements a stream of TCP streams (accepted connections).