Skip to content

Commit ffa505b

Browse files
authored
bpo-46560: Fix a typo in typing.ParamSpec's doc string (GH-30995)
1 parent 5445e17 commit ffa505b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ class ParamSpec(_Final, _Immutable, _TypeVarLike, _root=True):
867867
type checkers. They are used to forward the parameter types of one
868868
callable to another callable, a pattern commonly found in higher order
869869
functions and decorators. They are only valid when used in ``Concatenate``,
870-
or s the first argument to ``Callable``, or as parameters for user-defined
870+
or as the first argument to ``Callable``, or as parameters for user-defined
871871
Generics. See class Generic for more information on generic types. An
872872
example for annotating a decorator::
873873

0 commit comments

Comments
 (0)