summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-04-29 11:41:41 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-04-29 11:41:41 (GMT)
commit955bc38b16abd6f98f534337675b04f23e13124f (patch)
tree50c48e7306cb8bd05a07bc182def1b24d024225b /Doc
parent8421d714d030dbd0c368148aa818e15673db3b39 (diff)
parent5d6fd8c9365980f106748e9d716e458ac352f32f (diff)
downloadcpython-955bc38b16abd6f98f534337675b04f23e13124f.zip
cpython-955bc38b16abd6f98f534337675b04f23e13124f.tar.gz
cpython-955bc38b16abd6f98f534337675b04f23e13124f.tar.bz2
Issue #26322: Document typing.Set, patch by Joseph Moran
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/typing.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 422fb52..3bd38e5 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -430,9 +430,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])