From c6dabdfcf4f5ec9730a4c820cbd20dc32453bfc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C6=B0=C6=A1ng?= Date: Fri, 24 Aug 2018 11:57:31 +0700 Subject: [PATCH] Fix typo in the dataclasses's doc --- Doc/library/dataclasses.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst index 9e3c792fd106c7..acfd13a712b99b 100644 --- a/Doc/library/dataclasses.rst +++ b/Doc/library/dataclasses.rst @@ -447,7 +447,7 @@ parameters to the generated :meth:`__init__` method, and are passed to the optional :meth:`__post_init__` method. They are not otherwise used by dataclasses. -For example, suppose a field will be initialzed from a database, if a +For example, suppose a field will be initialized from a database, if a value is not provided when creating the class:: @dataclass