Commit 2a4e2ea1 authored by Raymond Hettinger's avatar Raymond Hettinger Committed by GitHub

Fix typo -- missing "not" (GH-5532)

parent 42e8ea9f
......@@ -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())``.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment