diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-07-28 01:25:31 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-07-28 01:25:31 (GMT) |
commit | 263893c2619c3df19770c0bf8c78bd1b427e3e5a (patch) | |
tree | 4b000640861e8fab54f2f55cfa0993f411ee0489 /Lib/test/test_fstring.py | |
parent | 8bde9111157e0eb994159c1506b1cec86298f810 (diff) | |
download | cpython-263893c2619c3df19770c0bf8c78bd1b427e3e5a.zip cpython-263893c2619c3df19770c0bf8c78bd1b427e3e5a.tar.gz cpython-263893c2619c3df19770c0bf8c78bd1b427e3e5a.tar.bz2 |
Issue #27626: Further spelling fixes for 3.6
Diffstat (limited to 'Lib/test/test_fstring.py')
-rw-r--r-- | Lib/test/test_fstring.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_fstring.py b/Lib/test/test_fstring.py index a82dedf..905ae63 100644 --- a/Lib/test/test_fstring.py +++ b/Lib/test/test_fstring.py @@ -250,7 +250,7 @@ f'{a * x()}'""" ]) self.assertAllRaise(SyntaxError, "invalid syntax", - [# Invalid sytax inside a nested spec. + [# Invalid syntax inside a nested spec. "f'{4:{/5}}'", ]) |