summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/collections.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 0b45fe123d..4975f74770 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -821,10 +821,10 @@ the items are returned in the order their keys were first added.
>>> d = OrderedDict.fromkeys('abcde')
>>> d.move_to_end('b')
- >>> ''.join(d.keys)
+ >>> ''.join(d.keys())
'acdeb'
>>> d.move_to_end('b', last=False)
- >>> ''.join(d.keys)
+ >>> ''.join(d.keys())
'bacde'
.. versionadded:: 3.2