From bdf61e70af0c6eb295ce991074c1a07e517e3cc0 Mon Sep 17 00:00:00 2001 From: JasterV <49537445+JasterV@users.noreply.github.com> Date: Thu, 5 Jun 2025 22:59:13 +0200 Subject: [PATCH] [fix] typos --- src/content/blog/DecouplingElixirGenServers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/blog/DecouplingElixirGenServers.md b/src/content/blog/DecouplingElixirGenServers.md index 745d6ba..b90d402 100644 --- a/src/content/blog/DecouplingElixirGenServers.md +++ b/src/content/blog/DecouplingElixirGenServers.md @@ -276,7 +276,7 @@ firmware.notifications -> third_party_notifications_service: send_notification { [Phoenix PubSub](https://github.com/phoenixframework/phoenix_pubsub) is a known Elixir library that comes with the Phoenix framework. -It is a generic PubSub library which enables us to implement a publish-subscribe pattern in our Elixir applications. +It is a generic PubSub library that enables us to implement a publish-subscribe pattern in our Elixir applications. It supports distribution by default (publishing and subscribing between erlang nodes) and multiple backends including Redis.