diff options
author | Eric V. Smith <ericvsmith@users.noreply.github.com> | 2021-05-03 06:33:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 06:33:34 (GMT) |
commit | 72720a2639368436da0981983549d000170623cc (patch) | |
tree | 2d9db32822d42e27ef3c3c9ac24533e2efe2aded | |
parent | a21b3d2fa2d3f86724fccd844b1364b5ff3b22af (diff) | |
download | cpython-72720a2639368436da0981983549d000170623cc.zip cpython-72720a2639368436da0981983549d000170623cc.tar.gz cpython-72720a2639368436da0981983549d000170623cc.tar.bz2 |
dataclasses docs: add a missing word. (GH-25839)
-rw-r--r-- | Doc/library/dataclasses.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst index 357ea98..64540b3 100644 --- a/Doc/library/dataclasses.rst +++ b/Doc/library/dataclasses.rst @@ -439,7 +439,7 @@ Module contents .. data:: KW_ONLY - A sentinel value used a type annotation. Any fields after a + A sentinel value used as a type annotation. Any fields after a pseudo-field with the type of :const:`KW_ONLY` are marked as keyword-only fields. Note that a pseudo-field of type :const:`KW_ONLY` is otherwise completely ignored. This includes the |