From c402d13c3f3abd8934a4b957d4f8c1878bb6049e Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 1 Jul 2022 10:39:18 +1000 Subject: [PATCH] docs: fix simple typo, recevied -> received There is a small typo in txzmq/pubsub.py. Should read `received` rather than `recevied`. --- txzmq/pubsub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/txzmq/pubsub.py b/txzmq/pubsub.py index 5813cdd..b148119 100644 --- a/txzmq/pubsub.py +++ b/txzmq/pubsub.py @@ -75,7 +75,7 @@ def messageReceived(self, message): def gotMessage(self, message, tag): """ - Called on incoming message recevied by subscriber. + Called on incoming message received by subscriber. Should be overridden to handle incoming messages.