diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-07-05 09:16:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 09:16:10 (GMT) |
commit | 3440d197a55800ecceea3e115e44b4262411359c (patch) | |
tree | 8b2d257a5e24646c798b91a8f618e76b835d2621 /Doc/library/typing.rst | |
parent | 2b8ed4d3d4741811da31fc774a202d535755c0a9 (diff) | |
download | cpython-3440d197a55800ecceea3e115e44b4262411359c.zip cpython-3440d197a55800ecceea3e115e44b4262411359c.tar.gz cpython-3440d197a55800ecceea3e115e44b4262411359c.tar.bz2 |
Docs: remove redundant "adverb-adjective" hyphens from compound modifiers (GH-94551)
Discussion: https://discuss.python.org/t/slight-grammar-fix-throughout-adverbs-dont-need-hyphen/17021
Diffstat (limited to 'Doc/library/typing.rst')
-rw-r--r-- | Doc/library/typing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index ddcdc70..fceb43a 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -78,7 +78,7 @@ annotations. These include: *Introducing* :data:`TypeVarTuple` * :pep:`647`: User-Defined Type Guards *Introducing* :data:`TypeGuard` -* :pep:`655`: Marking individual TypedDict items as required or potentially-missing +* :pep:`655`: Marking individual TypedDict items as required or potentially missing *Introducing* :data:`Required` and :data:`NotRequired` * :pep:`673`: Self type *Introducing* :data:`Self` @@ -1034,7 +1034,7 @@ These can be used as types in annotations using ``[]``, each having a unique syn as either required or non-required respectively. For more information, see :class:`TypedDict` and - :pep:`655` ("Marking individual TypedDict items as required or potentially-missing"). + :pep:`655` ("Marking individual TypedDict items as required or potentially missing"). .. versionadded:: 3.11 |