From 7fd1ab77acc24d52cd19febd126c8627372620e8 Mon Sep 17 00:00:00 2001 From: Matteo Pompili Date: Thu, 4 Aug 2022 15:24:35 -0500 Subject: [PATCH] fix typo in docs --- docs/usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage.rst b/docs/usage.rst index 52b7511..d770007 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -61,7 +61,7 @@ As you can imagine, subscribing is very similar to publishing! In the example be :emphasize-lines: 6, 10 When calling :meth:`~easypubsub.subscriber.Subscriber.receive`, a list of *publications* is returned (all the ones collected since the last call). -Each publication is a tuple of the form ``(topic, message)``, for example ``(lottery.winning_number, 42)``. +Each publication is a tuple of the form ``(topic, message)``, for example ``("lottery.winning_number", 42)``. EasyPubSub over a LAN ---------------------