summaryrefslogtreecommitdiffstats
path: root/Lib/typing.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-01-28 18:36:16 (GMT)
committerGitHub <noreply@github.com>2022-01-28 18:36:16 (GMT)
commit315a60acd14dd730b2081574c09ccc29e92ee687 (patch)
tree61bf48a82e3b4d8eac37abba4899b270647dc235 /Lib/typing.py
parent4d191fcde426ca0643d961aa18e787103f05fce2 (diff)
downloadcpython-315a60acd14dd730b2081574c09ccc29e92ee687.zip
cpython-315a60acd14dd730b2081574c09ccc29e92ee687.tar.gz
cpython-315a60acd14dd730b2081574c09ccc29e92ee687.tar.bz2
bpo-46560: Fix a typo in `typing.ParamSpec's` doc string (GH-30995)
(cherry picked from commit ffa505b580464d9d90c29e69bd4db8c52275280a) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Diffstat (limited to 'Lib/typing.py')
-rw-r--r--Lib/typing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/typing.py b/Lib/typing.py
index 0ea389d..abd5899 100644
--- a/Lib/typing.py
+++ b/Lib/typing.py
@@ -861,7 +861,7 @@ class ParamSpec(_Final, _Immutable, _TypeVarLike, _root=True):
type checkers. They are used to forward the parameter types of one
callable to another callable, a pattern commonly found in higher order
functions and decorators. They are only valid when used in ``Concatenate``,
- or s the first argument to ``Callable``, or as parameters for user-defined
+ or as the first argument to ``Callable``, or as parameters for user-defined
Generics. See class Generic for more information on generic types. An
example for annotating a decorator::