diff options
author | Landon Yarrington <33426811+jly36963@users.noreply.github.com> | 2021-10-09 19:17:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-09 19:17:52 (GMT) |
commit | 5b4a7675bcfc6368aff955f4a6231579718f5dad (patch) | |
tree | ff6e7240bbfd5c535dc64c6fcbf2ca82b7246c35 /Doc/whatsnew/3.10.rst | |
parent | dbd62e74dadda7868f1c0d497414c8f7e4c0b12b (diff) | |
download | cpython-5b4a7675bcfc6368aff955f4a6231579718f5dad.zip cpython-5b4a7675bcfc6368aff955f4a6231579718f5dad.tar.gz cpython-5b4a7675bcfc6368aff955f4a6231579718f5dad.tar.bz2 |
Fix dataclassses spelling (GH-28837)
Diffstat (limited to 'Doc/whatsnew/3.10.rst')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 266a80b..b1040d4 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -996,7 +996,7 @@ Added ``slots`` parameter in :func:`dataclasses.dataclass` decorator. Keyword-only fields ~~~~~~~~~~~~~~~~~~~ -dataclassses now supports fields that are keyword-only in the +dataclasses now supports fields that are keyword-only in the generated __init__ method. There are a number of ways of specifying keyword-only fields. |