diff options
author | Wulian <1055917385@qq.com> | 2024-08-21 12:49:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-21 12:49:23 (GMT) |
commit | 94036e43a83e8993f6ff42408759091b7c60d17d (patch) | |
tree | 8c5c47b07feeebb68ab878c1ae94f3f7168ebd81 /Lib/test/test_typing.py | |
parent | 7b26c4d1e3a856b9a377c57cffc3e7b3921d18bb (diff) | |
download | cpython-94036e43a83e8993f6ff42408759091b7c60d17d.zip cpython-94036e43a83e8993f6ff42408759091b7c60d17d.tar.gz cpython-94036e43a83e8993f6ff42408759091b7c60d17d.tar.bz2 |
Fix typos in comments (#123201)
Diffstat (limited to 'Lib/test/test_typing.py')
-rw-r--r-- | Lib/test/test_typing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index ef2ad30..6e036b6 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -2500,7 +2500,7 @@ class BaseCallableTests: def test_nested_paramspec(self): # Since Callable has some special treatment, we want to be sure - # that substituion works correctly, see gh-103054 + # that substitution works correctly, see gh-103054 Callable = self.Callable P = ParamSpec('P') P2 = ParamSpec('P2') |