diff options
author | Elliot Waite <elliot@elliotwaite.com> | 2021-07-22 07:31:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-22 07:31:22 (GMT) |
commit | 92a5c0871bfd835496ce5635f08d2bf0c62cb42a (patch) | |
tree | da0d2d280b6b05bd506eff9507e2e2202d4703b7 /Doc/library | |
parent | c878f5d81772dc6f718d6608c78baa4be9a4f176 (diff) | |
download | cpython-92a5c0871bfd835496ce5635f08d2bf0c62cb42a.zip cpython-92a5c0871bfd835496ce5635f08d2bf0c62cb42a.tar.gz cpython-92a5c0871bfd835496ce5635f08d2bf0c62cb42a.tar.bz2 |
Fix typo in collections.rst (#27270)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/collections.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index a630904..2a0bc04 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -1209,7 +1209,7 @@ attribute. regular dictionary, which is accessible via the :attr:`data` attribute of :class:`UserDict` instances. If *initialdata* is provided, :attr:`data` is initialized with its contents; note that a reference to *initialdata* will not - be kept, allowing it be used for other purposes. + be kept, allowing it to be used for other purposes. In addition to supporting the methods and operations of mappings, :class:`UserDict` instances provide the following attribute: |