diff options
Diffstat (limited to 'Lib/Queue.py')
-rw-r--r-- | Lib/Queue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/Queue.py b/Lib/Queue.py index cb04006..9d5f799 100644 --- a/Lib/Queue.py +++ b/Lib/Queue.py @@ -119,7 +119,7 @@ class Queue: def _qsize(self): return len(self.queue) - # Check wheter the queue is empty + # Check whether the queue is empty def _empty(self): return not self.queue |