]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-123621: Fix `datamodel.rst` with proper `dict` notation (GH-123648) (#123653)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 3 Sep 2024 20:12:17 +0000 (22:12 +0200)
committerGitHub <noreply@github.com>
Tue, 3 Sep 2024 20:12:17 +0000 (20:12 +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 377c7d5b229829b210a5b514b8f3a0a74896209b..e7903b1cdf3c73a3407d0c606129770b4f751a19 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::