From 7d94fd292cec13a2a648ef84c432eceb34aa54ee Mon Sep 17 00:00:00 2001 From: sruon Date: Tue, 27 May 2014 16:59:36 +0200 Subject: [PATCH] Update pushpull.rst Fixed typo --- 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