aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPredrag Gruevski <2348618+obi1kenobi@users.noreply.github.com>2022-01-08 02:39:10 -0500
committerGitHub <noreply@github.com>2022-01-07 23:39:10 -0800
commita7a8d4824bc2dc2e51e252cfc166d3dbc7057d72 (patch)
treefa4139f6e7e3f280d5631469566629f8db6d6727
parentdef3e45c691a77882bdebf791ab4e90da9a91f6a (diff)
downloadtyping-a7a8d4824bc2dc2e51e252cfc166d3dbc7057d72.tar.gz
Fix PEP number for `TypeAlias` (#1008)
Per the Python docs and PEPs, `TypeAlias` appears to have been defined in PEP 613, not PEP 610.
-rw-r--r--typing_extensions/README.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/typing_extensions/README.rst b/typing_extensions/README.rst
index 3730457..5b4ebdd 100644
--- a/typing_extensions/README.rst
+++ b/typing_extensions/README.rst
@@ -47,7 +47,7 @@ This module currently contains the following:
- ``ParamSpec`` (see PEP 612)
- ``ParamSpecArgs`` (see PEP 612)
- ``ParamSpecKwargs`` (see PEP 612)
- - ``TypeAlias`` (see PEP 610)
+ - ``TypeAlias`` (see PEP 613)
- ``TypeGuard`` (see PEP 647)
- In ``typing`` since Python 3.9