Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/library/collections.rst
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ counts, but the output will exclude results with counts of zero or less.
Rotate the deque *n* steps to the right. If *n* is negative, rotate to
the left.

When the deque is empty, rotating one step to the right is equivalent to
When the deque is not empty, rotating one step to the right is equivalent to
``d.appendleft(d.pop())``, and rotating one step to the left is
equivalent to ``d.append(d.popleft())``.

Expand Down