Skip to content

Commit

Permalink
bpo-46560: Fix a typo in typing.ParamSpec's doc string (pythonGH-30995
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ZackerySpytz committed Jan 28, 2022
1 parent 5445e17 commit ffa505b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,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::
Expand Down

0 comments on commit ffa505b

Please sign in to comment.