From 5be9a41f3d7319fd79f6e3535b4cc0e1daba3149 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Mon, 14 Nov 2011 18:35:41 +0100 Subject: [PATCH] Getting the facts right, here. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f00e2a..fa0e1a2 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ queue provider. Some terminology before we get started: * *Queues* are queues, in the computer science way. Technically, they are - Redis lists where work is `lpush`'ed on and `rpop`'ed from. + Redis lists where work is `rpush`'ed on and `lpop`'ed from. * *Jobs* are a definitions of work that can be carried out by a different process. Technically, they are just plain old Python function calls, with arguments and return values and the like.