From e4d37332f0a534c36cb02c261d785b7069829b26 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Fri, 15 Feb 2013 08:49:30 +0100 Subject: [PATCH] Fix typos. --- rq/queue.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rq/queue.py b/rq/queue.py index 87ff6719..3233770b 100644 --- a/rq/queue.py +++ b/rq/queue.py @@ -242,9 +242,9 @@ class Queue(object): """Class method returning the Job instance at the front of the given set of Queues, where the order of the queues is important. - When all of the Queues are empty, depending on the `timout` argument, + When all of the Queues are empty, depending on the `timeout` argument, either blocks execution of this function for the duration of the - timout or until new messages arrive on any of the queues, or returns + timeout or until new messages arrive on any of the queues, or returns None. See the documentation of cls.lpop for the interpretation of timeout.