From 28b877c08d6d89d505b84c76f302d989a187fbe3 Mon Sep 17 00:00:00 2001 From: Anoop Thomas Mathew Date: Thu, 27 Nov 2014 05:07:15 +0530 Subject: [PATCH] corrected producers to consumers --- source/pyzmq/patterns/pushpull.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/pyzmq/patterns/pushpull.rst b/source/pyzmq/patterns/pushpull.rst index 070a65b..ce85b4c 100644 --- a/source/pyzmq/patterns/pushpull.rst +++ b/source/pyzmq/patterns/pushpull.rst @@ -27,7 +27,7 @@ Producers are created with ZMQ.PUSH socket types. Producer is bound to well know **consumer.py** -Producers are created with ZMQ.PULL socket types to pull requests from producer and uses a push socket to connect and push result to result collector. +Consumers are created with ZMQ.PULL socket types to pull requests from producer and uses a push socket to connect and push result to result collector. .. literalinclude:: code/consumer.py :lines: 1-24