]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Fixed some typos 1185/head
authorLee Kyoung chan <leekchan@gmail.com>
Sun, 14 Sep 2014 09:47:10 +0000 (18:47 +0900)
committerLee Kyoung chan <leekchan@gmail.com>
Sun, 14 Sep 2014 09:47:10 +0000 (18:47 +0900)
tornado/test/README
tornado/test/httpclient_test.py
tornado/test/iostream_test.py

index 2d6195d807e09f77f5cc4a413d2cf4f13c1dad63..33edba9832c9296b43280b86eed09d0c43cc9abb 100644 (file)
@@ -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
index 123b2cfd4d5eea4a91a14ec14b1fdffcc495aa8e..e3b72c9721834ed31825cc21286e3446bae289a8 100644 (file)
@@ -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).
     #
index 01b0d95ac29391107e89fe7988a06a92da0322a1..b72661559cdce987010eeffe2be84702ca4c40ac 100644 (file)
@@ -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.