From 79c78fd93669fff6c8f45d549a14d64b882e8697 Mon Sep 17 00:00:00 2001 From: gak Date: Mon, 17 Jun 2024 10:03:20 +1000 Subject: [PATCH] docs: subscribers typo (#1799) --- docs/content/docs/reference/pubsub.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/reference/pubsub.md b/docs/content/docs/reference/pubsub.md index 32b3edc07e..11fad3cb03 100644 --- a/docs/content/docs/reference/pubsub.md +++ b/docs/content/docs/reference/pubsub.md @@ -13,7 +13,7 @@ toc = true top = false +++ -FTL has first-class support for PubSub, modelled on the concepts of topics (where events are sent), subscriptions (a cursor over the topic), and subscribers (functions events are delivered to). Susbcribers are, as you would expect, sinks. Each subscription is a cursor over the topic it is associated with. Each topic may have multiple subscriptions. Each subscription may have multiple subscribers, in which case events will be distributed among them. +FTL has first-class support for PubSub, modelled on the concepts of topics (where events are sent), subscriptions (a cursor over the topic), and subscribers (functions events are delivered to). Subscribers are, as you would expect, sinks. Each subscription is a cursor over the topic it is associated with. Each topic may have multiple subscriptions. Each subscription may have multiple subscribers, in which case events will be distributed among them. First, declare a new topic: