From cfbc841ef3c27b3e65d1223bf8fedf1f652137bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lipt=C3=A1k=20Attila=20=28Flash=29?= <113017309+AttilaLiptak@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:52:00 +0200 Subject: [PATCH] gh-123621: Fix `datamodel.rst` with proper `dict` notation (#123648) --- Doc/reference/datamodel.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 8c3134a61ed..ee9703819e2 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -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::