From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 3 Sep 2024 20:00:53 +0000 (+0200) Subject: [3.12] gh-123621: Fix `datamodel.rst` with proper `dict` notation (GH-123648) (#123654) X-Git-Tag: v3.12.6~29 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=252ed6da4d5aa71960be0b937d9b4b88cb4964fb;p=thirdparty%2FPython%2Fcpython.git [3.12] gh-123621: Fix `datamodel.rst` with proper `dict` notation (GH-123648) (#123654) 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> --- diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index aa60492361d4..7cff9545dd2a 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -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::