aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-03-08 03:47:08 +0100
committerMattias Andrée <maandree@operamail.com>2014-03-08 03:47:08 +0100
commitedf8d9f8e3276ae25debd4b27d85c0d1db53de8f (patch)
treef123bab928c5180d2394f10e93753c1a18a18295
parentadd hashsum (diff)
downloadjoin-python-edf8d9f8e3276ae25debd4b27d85c0d1db53de8f.tar.gz
join-python-edf8d9f8e3276ae25debd4b27d85c0d1db53de8f.tar.bz2
join-python-edf8d9f8e3276ae25debd4b27d85c0d1db53de8f.tar.xz
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rwxr-xr-xsrc/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test.py b/src/test.py
index 2538680..bf1acf5 100755
--- a/src/test.py
+++ b/src/test.py
@@ -118,13 +118,13 @@ def c(value):
print(' Not last (but often ordered): %i' % value)
time.sleep(1)
-print('Testing connurrently')
+print('Testing concurrently')
concurrently(lambda : c(0), lambda : c(1), lambda : c(2), lambda : c(3))
print(' Last (delayed c:a 1 s)')
print()
-print('Testing connurrently with @signal and @puresignal')
+print('Testing concurrently with @signal and @puresignal')
concurrently(signal(lambda : c(0)), signal(lambda : c(1)), puresignal(lambda : c(2)), puresignal(lambda : c(3)))
print(' Last (delayed c:a 1 s)')
print()