diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-07-22 08:38:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-22 08:38:22 (GMT) |
commit | 0fb4b75f7a8e8a3db5b90e7fe4a40348f6a51703 (patch) | |
tree | f56bc8a358ae1ac792b76f1d41cbafb99cdccab0 /Doc/library | |
parent | 4194f1465fa85371dcbead57a54bb06d1f0b97d9 (diff) | |
download | cpython-0fb4b75f7a8e8a3db5b90e7fe4a40348f6a51703.zip cpython-0fb4b75f7a8e8a3db5b90e7fe4a40348f6a51703.tar.gz cpython-0fb4b75f7a8e8a3db5b90e7fe4a40348f6a51703.tar.bz2 |
Fix typo in collections.rst (GH-27270) (#27285)
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: |