From: Ben Darnell Date: Sun, 14 Feb 2016 00:11:41 +0000 (-0500) Subject: Improve grammar in docs X-Git-Tag: v4.4.0b1~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9919bf14457490cd01c15c2b7a5b07850dc8e3f;p=thirdparty%2Ftornado.git Improve grammar in docs Fixes #1629 --- diff --git a/docs/guide/intro.rst b/docs/guide/intro.rst index ba28c773b..d5b975d55 100644 --- a/docs/guide/intro.rst +++ b/docs/guide/intro.rst @@ -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.