Skip to content

Commit ca6c125

Browse files
authored
Fix typo -- missing "not" (GH-5528)
1 parent 95c3262 commit ca6c125

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/collections.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ or subtracting from an empty counter.
514514
Rotate the deque *n* steps to the right. If *n* is negative, rotate
515515
to the left.
516516

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

0 commit comments

Comments
 (0)