diff options
| -rw-r--r-- | Doc/library/typing.rst | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 1780739..1e48fec 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -939,7 +939,7 @@ The module defines the following classes, functions and decorators:         Union[int, str] == Union[str, int] -   * When a class and its subclass are present, the former is skipped, e.g.:: +   * When a class and its subclass are present, the latter is skipped, e.g.::         Union[int, object] == object  | 
