Fix typo -- missing "not" (GH-5528) (GH-5530)

This commit is contained in:
Miss Islington (bot) 2018-02-04 10:10:17 -08:00 committed by Raymond Hettinger
parent e6499a07d4
commit 5c5e61bc9f
1 changed files with 1 additions and 1 deletions

View File

@ -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())``.