Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/typing_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2141,7 +2141,7 @@ def TypeIs(self, parameters):

1. The return value is a boolean.
2. If the return value is ``True``, the type of its argument
is the intersection of the type inside ``TypeGuard`` and the argument's
is the intersection of the type inside ``TypeIs`` and the argument's
previously known type.

For example::
Expand Down Expand Up @@ -2189,7 +2189,7 @@ def __getitem__(self, parameters):

1. The return value is a boolean.
2. If the return value is ``True``, the type of its argument
is the intersection of the type inside ``TypeGuard`` and the argument's
is the intersection of the type inside ``TypeIs`` and the argument's
previously known type.

For example::
Expand Down
Loading