summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorChristopher Yeh <chrisyeh96@users.noreply.github.com>2020-08-11 22:27:08 (GMT)
committerGitHub <noreply@github.com>2020-08-11 22:27:08 (GMT)
commit0dfee33dfe6b4683016dc920ee934d3a2d7323a1 (patch)
tree7921b58a539157300d4ff3e51f4533f3cde58bc7 /Doc/library
parentb5f87b93a542082551c67538523d318f0d46e16e (diff)
downloadcpython-0dfee33dfe6b4683016dc920ee934d3a2d7323a1.zip
cpython-0dfee33dfe6b4683016dc920ee934d3a2d7323a1.tar.gz
cpython-0dfee33dfe6b4683016dc920ee934d3a2d7323a1.tar.bz2
Fix typo (GH-21820)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 7028d24..5a10faa 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -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'``