]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-123621: Fix `datamodel.rst` with proper `dict` notation (GH-123648) (#123654)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 3 Sep 2024 20:00:53 +0000 (22:00 +0200)
committerGitHub <noreply@github.com>
Tue, 3 Sep 2024 20:00:53 +0000 (20:00 +0000)
gh-123621: Fix `datamodel.rst` with proper `dict` notation (GH-123648)
(cherry picked from commit cfbc841ef3c27b3e65d1223bf8fedf1f652137bc)

Co-authored-by: Lipták Attila (Flash) <113017309+AttilaLiptak@users.noreply.github.com>
Doc/reference/datamodel.rst

index aa60492361d4fd6760f7129884c0c9a6be463130..7cff9545dd2a2351d7ca2b3c64f77f69b6d34492 100644 (file)
@@ -496,7 +496,7 @@ in the same order they were added sequentially over the dictionary.
 Replacing an existing key does not change the order, however removing a key
 and re-inserting it will add it to the end instead of keeping its old place.
 
-Dictionaries are mutable; they can be created by the ``{...}`` notation (see
+Dictionaries are mutable; they can be created by the ``{}`` notation (see
 section :ref:`dict`).
 
 .. index::