]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-123621: Fix `datamodel.rst` with proper `dict` notation (#123648)
authorLipták Attila (Flash) <113017309+AttilaLiptak@users.noreply.github.com>
Tue, 3 Sep 2024 19:52:00 +0000 (21:52 +0200)
committerGitHub <noreply@github.com>
Tue, 3 Sep 2024 19:52:00 +0000 (22:52 +0300)
Doc/reference/datamodel.rst

index 8c3134a61ed1a660bba57169166d40a66a537ea7..ee9703819e2674cb45405fa3440e22f7d9dcc0d0 100644 (file)
@@ -499,7 +499,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::