From 6fbe69d45482d8370937023d95c85c043e55ec7b Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 18 Sep 2011 13:00:36 -0700 Subject: [PATCH] spelling errors in comments --- beetsplug/bpd/bluelet.py | 2 +- test/testall.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/beetsplug/bpd/bluelet.py b/beetsplug/bpd/bluelet.py index b6f9e7277..626587813 100644 --- a/beetsplug/bpd/bluelet.py +++ b/beetsplug/bpd/bluelet.py @@ -119,7 +119,7 @@ class ThreadException(Exception): def run(root_coro): # The "threads" dictionary keeps track of all the currently- - # executing coroutines. It maps coroutines to their currenly + # executing coroutines. It maps coroutines to their currently # "blocking" event. threads = {root_coro: ValueEvent(None)} diff --git a/test/testall.py b/test/testall.py index 136c510fe..88333121e 100755 --- a/test/testall.py +++ b/test/testall.py @@ -25,7 +25,8 @@ os.chdir(pkgpath) def suite(): s = unittest.TestSuite() - # get the suite() of every module in this directory begining with test_ + # Get the suite() of every module in this directory beginning with + # "test_". for fname in os.listdir(pkgpath): match = re.match(r'(test_\S+)\.py$', fname) if match: