From a55cc36b3317503d400d1659771cd1fea9bf8775 Mon Sep 17 00:00:00 2001 From: Phurba Date: Fri, 5 Sep 2025 13:01:35 +0545 Subject: [PATCH] docs: fix typo characterized -> categorized --- content/develop/pubsub/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/develop/pubsub/_index.md b/content/develop/pubsub/_index.md index c199cb03c3..19eb90f0f0 100644 --- a/content/develop/pubsub/_index.md +++ b/content/develop/pubsub/_index.md @@ -20,7 +20,7 @@ weight: 60 --- [`SUBSCRIBE`]({{< relref "/commands/subscribe" >}}), [`UNSUBSCRIBE`]({{< relref "/commands/unsubscribe" >}}) and [`PUBLISH`]({{< relref "/commands/publish" >}}) implement the [Publish/Subscribe messaging paradigm](http://en.wikipedia.org/wiki/Publish/subscribe) where (citing Wikipedia) senders (publishers) are not programmed to send their messages to specific receivers (subscribers). -Rather, published messages are characterized into channels, without knowledge of what (if any) subscribers there may be. +Rather, published messages are categorized into channels, without knowledge of what (if any) subscribers there may be. Subscribers express interest in one or more channels and only receive messages that are of interest, without knowledge of what (if any) publishers there are. This decoupling of publishers and subscribers allows for greater scalability and a more dynamic network topology.