diff options
-rw-r--r-- | Doc/library/typing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 89d4bba..119af88 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -431,9 +431,9 @@ The module defines the following classes, functions and decorators: def slice__to_4(vector: Sequence[T]) -> List[T]: return vector[0:4] -.. class:: AbstractSet(set, MutableSet[T]) +.. class:: Set(set, MutableSet[T]) - A generic version of :class:`collections.abc.Set`. + A generic version of :class:`builtins.set <set>`. .. class:: MappingView(Sized, Iterable[T_co]) |