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 /py/makecompresseddata.py | |
parent | e160fe7bc64212a3ce56f5478f208e2b4d343a8b (diff) | |
download | micropython-b1229efbd1509654dec6053865ab828d769e29db.tar.gz micropython-b1229efbd1509654dec6053865ab828d769e29db.zip |
all: Fix spelling mistakes based on codespell check.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/makecompresseddata.py')
-rw-r--r-- | py/makecompresseddata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/makecompresseddata.py b/py/makecompresseddata.py index 9603de8713..1bce3e8e83 100644 --- a/py/makecompresseddata.py +++ b/py/makecompresseddata.py @@ -24,7 +24,7 @@ def check_non_ascii(msg): # Replace <char><space> with <char | 0x80>. -# Trival scheme to demo/test. +# Trivial scheme to demo/test. def space_compression(error_strings): for line in error_strings: check_non_ascii(line) |