Skip to content

Commit 315a60a

Browse files
bpo-46560: Fix a typo in typing.ParamSpec's doc string (GH-30995)
(cherry picked from commit ffa505b) Co-authored-by: Zackery Spytz <[email protected]>
1 parent 4d191fc commit 315a60a

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
@@ -861,7 +861,7 @@ class ParamSpec(_Final, _Immutable, _TypeVarLike, _root=True):
861861
type checkers. They are used to forward the parameter types of one
862862
callable to another callable, a pattern commonly found in higher order
863863
functions and decorators. They are only valid when used in ``Concatenate``,
864-
or s the first argument to ``Callable``, or as parameters for user-defined
864+
or as the first argument to ``Callable``, or as parameters for user-defined
865865
Generics. See class Generic for more information on generic types. An
866866
example for annotating a decorator::
867867

0 commit comments

Comments
 (0)