]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Fix html markup in sphinx docs branch2.4
authorBen Darnell <ben@bendarnell.com>
Wed, 13 Mar 2013 13:08:30 +0000 (09:08 -0400)
committerBen Darnell <ben@bendarnell.com>
Wed, 13 Mar 2013 13:08:30 +0000 (09:08 -0400)
website/sphinx/index.rst

index bbff3416b7f61a5f23e976228430a7b343ba347c..cd15ca2f8363d9fac280794ef97fc426beebb06e 100644 (file)
@@ -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 &mdash; 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
 <http://www.kegel.com/c10k.html>`_.)
@@ -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()</code></pre>
+        tornado.ioloop.IOLoop.instance().start()
 
 See the :doc:`Tornado documentation <documentation>` for a
 detailed walkthrough of the framework.