diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 351c0bee75c83f..8c179ff79d15fa 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -570,7 +570,7 @@ The module defines the following classes, functions and decorators: :ref:`type variables `, and unions of any of these types. For example:: - def new_non_team_user(user_class: Type[Union[BaseUser, ProUser]]): ... + def new_non_team_user(user_class: Type[Union[BasicUser, ProUser]]): ... ``Type[Any]`` is equivalent to ``Type`` which in turn is equivalent to ``type``, which is the root of Python's metaclass hierarchy.