From 495138b44452d7c98b4857fc829a0a4bc21e630d Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Wed, 13 Mar 2013 09:08:30 -0400 Subject: [PATCH] Fix html markup in sphinx docs --- website/sphinx/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/sphinx/index.rst b/website/sphinx/index.rst index bbff3416..cd15ca2f 100644 --- a/website/sphinx/index.rst +++ b/website/sphinx/index.rst @@ -25,7 +25,7 @@ reasonably fast. Because it is non-blocking and uses `epoll or ``kqueue``, it can handle thousands of simultaneous standing connections, which means it is ideal for real-time web services. We built the web server specifically to handle FriendFeed's real-time -features — every active user of FriendFeed maintains an open +features — every active user of FriendFeed maintains an open connection to the FriendFeed servers. (For more information on scaling servers to support thousands of clients, see The `C10K problem `_.) @@ -68,7 +68,7 @@ Here is the canonical "Hello, world" example app for Tornado:: if __name__ == "__main__": application.listen(8888) - tornado.ioloop.IOLoop.instance().start() + tornado.ioloop.IOLoop.instance().start() See the :doc:`Tornado documentation ` for a detailed walkthrough of the framework.