Test coverage is almost non-existent, but it's a start. Be sure to
-set PYTHONPATH apprioriately (generally to the root directory of your
+set PYTHONPATH appropriately (generally to the root directory of your
tornado checkout) when running tests to make sure you're getting the
version of the tornado package that you expect.
\ No newline at end of file
# to start again. It does this *before* telling the socket callback to
# unregister the FD. Some IOLoop implementations have special kernel
# integration to discover this immediately. Tornado's IOLoops
- # ignore errors on remove_handler to accomodate this behavior, but
+ # ignore errors on remove_handler to accommodate this behavior, but
# Twisted's reactor does not. The removeReader call fails and so
# do all future removeAll calls (which our tests do at cleanup).
#
server, client = self.make_iostream_pair()
server.set_close_callback(self.stop)
try:
- # Start a read that will be fullfilled asynchronously.
+ # Start a read that will be fulfilled asynchronously.
server.read_bytes(1, lambda data: None)
client.write(b'a')
# Stub out read_from_fd to make it fail.