Merge pull request #969 from ronnix/patch-1

Fix asyncio code example
This commit is contained in:
bdarnell 2013-12-30 14:18:58 -08:00
commit 9577776e3e
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ loops.
from tornado.platform.asyncio import AsyncIOMainLoop
import asyncio
AsyncIOMainLoop().install()
asyncio.get_event_loop.run_forever()
asyncio.get_event_loop().run_forever()
.. py:class:: AsyncIOLoop