]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo (GH-21820)
authorChristopher Yeh <chrisyeh96@users.noreply.github.com>
Tue, 11 Aug 2020 22:27:08 +0000 (15:27 -0700)
committerGitHub <noreply@github.com>
Tue, 11 Aug 2020 22:27:08 +0000 (19:27 -0300)
Doc/library/stdtypes.rst

index 7028d240c59ebb428e19809d44ebc7ac77adcc10..5a10faa7bbd293b7506231bdfaa35c9dc84c3997 100644 (file)
@@ -4205,7 +4205,7 @@ The constructors for both classes work the same:
 
 
    Note, the non-operator versions of :meth:`union`, :meth:`intersection`,
-   :meth:`difference`, and :meth:`symmetric_difference`, :meth:`issubset`, and
+   :meth:`difference`, :meth:`symmetric_difference`, :meth:`issubset`, and
    :meth:`issuperset` methods will accept any iterable as an argument.  In
    contrast, their operator based counterparts require their arguments to be
    sets.  This precludes error-prone constructions like ``set('abc') & 'cbs'``