Skip to content

Commit

Permalink
Fix typo -- missing "not" (GH-5528)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhettinger committed Feb 4, 2018
1 parent 95c3262 commit ca6c125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/collections.rst
Expand Up @@ -514,7 +514,7 @@ or subtracting from an empty counter.
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
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

0 comments on commit ca6c125

Please sign in to comment.