diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/collections.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 1cc4097..439e3bf 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -804,7 +804,7 @@ the items are returned in the order their keys were first added. >>> d.move_to_end('b') >>> ''.join(d.keys) 'acdeb' - >>> d.move_to_end('b', 0) + >>> d.move_to_end('b', last=False) >>> ''.join(d.keys) 'bacde' |