summaryrefslogtreecommitdiffstats
path: root/Lib/dataclasses.py
diff options
context:
space:
mode:
authorLandon Yarrington <33426811+jly36963@users.noreply.github.com>2021-10-09 19:17:52 (GMT)
committerGitHub <noreply@github.com>2021-10-09 19:17:52 (GMT)
commit5b4a7675bcfc6368aff955f4a6231579718f5dad (patch)
treeff6e7240bbfd5c535dc64c6fcbf2ca82b7246c35 /Lib/dataclasses.py
parentdbd62e74dadda7868f1c0d497414c8f7e4c0b12b (diff)
downloadcpython-5b4a7675bcfc6368aff955f4a6231579718f5dad.zip
cpython-5b4a7675bcfc6368aff955f4a6231579718f5dad.tar.gz
cpython-5b4a7675bcfc6368aff955f4a6231579718f5dad.tar.bz2
Fix dataclassses spelling (GH-28837)
Diffstat (limited to 'Lib/dataclasses.py')
-rw-r--r--Lib/dataclasses.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dataclasses.py b/Lib/dataclasses.py
index 95ff392..1e98bf9 100644
--- a/Lib/dataclasses.py
+++ b/Lib/dataclasses.py
@@ -1387,7 +1387,7 @@ def make_dataclass(cls_name, fields, *, bases=(), namespace=None, init=True,
ns['__annotations__'] = annotations
# We use `types.new_class()` instead of simply `type()` to allow dynamic creation
- # of generic dataclassses.
+ # of generic dataclasses.
cls = types.new_class(cls_name, bases, {}, exec_body_callback)
# Apply the normal decorator.