diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2017-05-29 10:08:14 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2017-05-29 11:36:05 +0300 |
commit | ca16c3821053e5bf2b87aeb10007f73f31dc1eac (patch) | |
tree | 28b394ba7ef2e107c5fb3112c7ba97f01b6915f1 /tests/wipy/uart.py | |
parent | e5e49bedcb0ed353ee22ba99078301d9ccd87dbf (diff) |
various: Spelling fixes
Diffstat (limited to 'tests/wipy/uart.py')
-rw-r--r-- | tests/wipy/uart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wipy/uart.py b/tests/wipy/uart.py index a3a1c14e8..8e794015d 100644 --- a/tests/wipy/uart.py +++ b/tests/wipy/uart.py @@ -95,7 +95,7 @@ print(uart1.read() == None) print(uart1.write(b'123') == 3) print(uart0.read() == b'123') -# no pin assignemnt +# no pin assignment uart0 = UART(0, 1000000, pins=(None, None)) print(uart0.write(b'123456789') == 9) print(uart1.read() == None) |