]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Improve grammar in docs
authorBen Darnell <ben@bendarnell.com>
Sun, 14 Feb 2016 00:11:41 +0000 (19:11 -0500)
committerBen Darnell <ben@bendarnell.com>
Sun, 14 Feb 2016 00:11:58 +0000 (19:11 -0500)
Fixes #1629

docs/guide/intro.rst

index ba28c773b3431f313318717a26969db5bb34b195..d5b975d556e3cca1c6ed3969cb90f5efc74325ac 100644 (file)
@@ -15,9 +15,9 @@ Tornado can be roughly divided into four major components:
   create web applications, and various supporting classes).
 * Client- and server-side implementions of HTTP (`.HTTPServer` and
   `.AsyncHTTPClient`).
-* An asynchronous networking library (`.IOLoop` and `.IOStream`),
-  which serve as the building blocks for the HTTP components and can
-  also be used to implement other protocols.
+* An asynchronous networking library including the classes `.IOLoop`
+  and `.IOStream`, which serve as the building blocks for the HTTP
+  components and can also be used to implement other protocols.
 * A coroutine library (`tornado.gen`) which allows asynchronous
   code to be written in a more straightforward way than chaining
   callbacks.