summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDaniel Dương <dduong42@users.noreply.github.com>2018-08-24 09:19:24 (GMT)
committerEric V. Smith <ericvsmith@users.noreply.github.com>2018-08-24 09:19:24 (GMT)
commit075b3c325913475be16650f7cb2a99f3136623b9 (patch)
tree95598617eb28436402248227ec4f869205a1c52b /Doc
parent7ecae3ca0bda3cacf3b0125bae0bc718a17cc071 (diff)
downloadcpython-075b3c325913475be16650f7cb2a99f3136623b9.zip
cpython-075b3c325913475be16650f7cb2a99f3136623b9.tar.gz
cpython-075b3c325913475be16650f7cb2a99f3136623b9.tar.bz2
Fix typo in the dataclasses's doc (GH-8896)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/dataclasses.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst
index 9e3c792..acfd13a 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