From: Lipták Attila (Flash) <113017309+AttilaLiptak@users.noreply.github.com> Date: Tue, 3 Sep 2024 19:52:00 +0000 (+0200) Subject: gh-123621: Fix `datamodel.rst` with proper `dict` notation (#123648) X-Git-Tag: v3.14.0a1~599 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cfbc841ef3c27b3e65d1223bf8fedf1f652137bc;p=thirdparty%2FPython%2Fcpython.git gh-123621: Fix `datamodel.rst` with proper `dict` notation (#123648) --- diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 8c3134a61ed1..ee9703819e26 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::