Skip to content

Commit

Permalink
Fix html markup in sphinx docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Mar 13, 2013
1 parent 515ad6a commit 495138b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/sphinx/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
<http://www.kegel.com/c10k.html>`_.)
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 495138b

Please sign in to comment.