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/basics/namedtuple1.py | |
parent | e5e49bedcb0ed353ee22ba99078301d9ccd87dbf (diff) | |
download | micropython-ca16c3821053e5bf2b87aeb10007f73f31dc1eac.tar.gz micropython-ca16c3821053e5bf2b87aeb10007f73f31dc1eac.zip |
various: Spelling fixes
Diffstat (limited to 'tests/basics/namedtuple1.py')
-rw-r--r-- | tests/basics/namedtuple1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/namedtuple1.py b/tests/basics/namedtuple1.py index 132dcf96b3..70372f7cab 100644 --- a/tests/basics/namedtuple1.py +++ b/tests/basics/namedtuple1.py @@ -76,7 +76,7 @@ T4 = namedtuple("TupTuple", ("foo", "bar")) t = T4(1, 2) print(t.foo, t.bar) -# Try single string with comma field seperator +# Try single string with comma field separator # Not implemented so far #T2 = namedtuple("TupComma", "foo,bar") #t = T2(1, 2) |