@@ -332,7 +332,7 @@ See :mod:`sys.monitoring` for details.
332332New Features Related to Type Hints
333333==================================
334334
335- This section covers major changes affecting :pep: `484 ` type hints and
335+ This section covers major changes affecting :pep: `type hints < 484 >` and
336336the :mod: `typing ` module.
337337
338338.. _whatsnew312-pep692 :
@@ -344,7 +344,7 @@ Typing ``**kwargs`` in a function signature as introduced by :pep:`484` allowed
344344for valid annotations only in cases where all of the ``**kwargs `` were of the
345345same type.
346346
347- This PEP specifies a more precise way of typing ``**kwargs `` by relying on
347+ :pep: ` 692 ` specifies a more precise way of typing ``**kwargs `` by relying on
348348typed dictionaries::
349349
350350 from typing import TypedDict, Unpack
@@ -388,6 +388,8 @@ Example::
388388 def get_colour(self) -> str:
389389 return "red"
390390
391+ See :pep: `698 ` for more details.
392+
391393(Contributed by Steven Troxler in :gh: `101561 `.)
392394
393395.. _whatsnew312-pep695 :
@@ -433,8 +435,8 @@ parameters with bounds or constraints::
433435
434436The value of type aliases and the bound and constraints of type variables
435437created through this syntax are evaluated only on demand (see
436- :ref: `lazy-evaluation `). This means type aliases are able to refer to other
437- types defined later in the file.
438+ :ref: `lazy evaluation < lazy -evaluation> `). This means type aliases are able to
439+ refer to other types defined later in the file.
438440
439441Type parameters declared through a type parameter list are visible within the
440442scope of the declaration and any nested scopes, but not in the outer scope. For
0 commit comments