From e55ca3fdcbb8dda04f6f9fb2ccd1069aa1100cd5 Mon Sep 17 00:00:00 2001 From: Artjom Date: Fri, 6 Jul 2018 02:09:13 +0300 Subject: [PATCH] Fix typo in dataclasses documentation (GH-8102) --- Lib/dataclasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/dataclasses.py b/Lib/dataclasses.py index ad7bf0f759..e00a125bbd 100644 --- a/Lib/dataclasses.py +++ b/Lib/dataclasses.py @@ -257,7 +257,7 @@ class Field: # This is used to support the PEP 487 __set_name__ protocol in the # case where we're using a field that contains a descriptor as a - # defaul value. For details on __set_name__, see + # default value. For details on __set_name__, see # https://www.python.org/dev/peps/pep-0487/#implementation-details. # # Note that in _process_class, this Field object is overwritten -- 2.49.0