diff options
author | Damien George <damien@micropython.org> | 2023-03-08 14:10:02 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-04-27 18:03:06 +1000 |
commit | b1229efbd1509654dec6053865ab828d769e29db (patch) | |
tree | e1a65606dd1f0a8cfe2af08f9c4ff821fb575b02 /tests/thread/thread_lock1.py | |
parent | e160fe7bc64212a3ce56f5478f208e2b4d343a8b (diff) |
all: Fix spelling mistakes based on codespell check.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/thread/thread_lock1.py')
-rw-r--r-- | tests/thread/thread_lock1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/thread/thread_lock1.py b/tests/thread/thread_lock1.py index 342c554f4..1d0701da0 100644 --- a/tests/thread/thread_lock1.py +++ b/tests/thread/thread_lock1.py @@ -30,7 +30,7 @@ print(lock.locked()) with lock: print(lock.locked()) -# test that lock is unlocked if an error is rasied +# test that lock is unlocked if an error is raised try: with lock: print(lock.locked()) |