From 4c42bf7f5751fba2c890fe0663cf060a80d16d5a Mon Sep 17 00:00:00 2001 From: "ralf@brainbot.com" Date: Wed, 3 Jun 2009 15:16:34 +0200 Subject: [PATCH] fix typos in comments --HG-- branch : trunk --- contrib/pytest_twisted/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/pytest_twisted/__init__.py b/contrib/pytest_twisted/__init__.py index 292fe97d9..75a631745 100644 --- a/contrib/pytest_twisted/__init__.py +++ b/contrib/pytest_twisted/__init__.py @@ -1,5 +1,5 @@ """ -Notes: twisted's asynchrone behavior may have influence on the order of test-functions +Notes: twisted's asynchronous behavior may have influence on the order of test-functions TODO: + credits to Ralf Schmitt See: http://twistedmatrix.com/pipermail/twisted-python/2007-February/014872.html @@ -63,10 +63,10 @@ def _run_twisted(logging=False): # the test-function *may* return a deferred # here the test-function will actually been called - # done() is finalizing a test-process by assureing recursive envoking + # done() is finalizing a test-process by assuring recursive invoking # of doit() defer.maybeDeferred(res).addCallback(done).addErrback(err) - # initialy preparing the calling of doit() and starting the reactor + # initially preparing the calling of doit() and starting the reactor reactor.callLater(0.0, doit, None) reactor.run()