From: Eric V. Smith Date: Mon, 3 May 2021 06:33:34 +0000 (-0400) Subject: dataclasses docs: add a missing word. (GH-25839) X-Git-Tag: v3.10.0b1~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=72720a2639368436da0981983549d000170623cc;p=thirdparty%2FPython%2Fcpython.git dataclasses docs: add a missing word. (GH-25839) --- diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst index 357ea9820fe6..64540b3e963b 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