From ada55ccb552847fcb55a35ba4c0dca7132a2debc Mon Sep 17 00:00:00 2001 From: Lee Kyoung chan Date: Sun, 14 Sep 2014 18:47:10 +0900 Subject: [PATCH] Fixed some typos --- tornado/test/README | 2 +- tornado/test/httpclient_test.py | 2 +- tornado/test/iostream_test.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tornado/test/README b/tornado/test/README index 2d6195d80..33edba983 100644 --- a/tornado/test/README +++ b/tornado/test/README @@ -1,4 +1,4 @@ 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 diff --git a/tornado/test/httpclient_test.py b/tornado/test/httpclient_test.py index 123b2cfd4..e3b72c972 100644 --- a/tornado/test/httpclient_test.py +++ b/tornado/test/httpclient_test.py @@ -433,7 +433,7 @@ Transfer-Encoding: chunked # 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). # diff --git a/tornado/test/iostream_test.py b/tornado/test/iostream_test.py index 01b0d95ac..b72661559 100644 --- a/tornado/test/iostream_test.py +++ b/tornado/test/iostream_test.py @@ -511,7 +511,7 @@ class TestIOStreamMixin(object): 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. -- 2.47.2