diff options
author | Min ho Kim <minho42@gmail.com> | 2019-07-21 20:12:33 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2019-07-21 20:12:33 (GMT) |
commit | 96e12d5f4f3c5a20986566038ee763dff3c228a1 (patch) | |
tree | ae4039f978a155a295903e084f4531d42b8cf7a8 /Lib/collections | |
parent | 8e3a7380ecb310b50e48f47d1f26190cc9c45eb6 (diff) | |
download | cpython-96e12d5f4f3c5a20986566038ee763dff3c228a1.zip cpython-96e12d5f4f3c5a20986566038ee763dff3c228a1.tar.gz cpython-96e12d5f4f3c5a20986566038ee763dff3c228a1.tar.bz2 |
Fix typos in docs, comments and test assert messages (#14872)
Diffstat (limited to 'Lib/collections')
-rw-r--r-- | Lib/collections/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 2264efe..75d7975 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -440,7 +440,7 @@ def namedtuple(typename, field_names, *, rename=False, defaults=None, module=Non '__slots__': (), '_fields': field_names, '_field_defaults': field_defaults, - # alternate spelling for backward compatiblity + # alternate spelling for backward compatibility '_fields_defaults': field_defaults, '__new__': __new__, '_make': _make, |