From a6ee49b50c94bea9d6ebe066b2db9abc4aa66dc3 Mon Sep 17 00:00:00 2001 From: JasterV <49537445+JasterV@users.noreply.github.com> Date: Thu, 5 Jun 2025 22:56:39 +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 c837fae..4c91a41 100644 --- a/src/content/blog/DecouplingElixirGenServers.md +++ b/src/content/blog/DecouplingElixirGenServers.md @@ -186,7 +186,7 @@ With that said, let's talk about some possible issues we could run into. Following the previous design, we are coupling the DoorServer implementation with the lights and notifications modules. -The lights module might rely hardware which could fail at any time (perhaps the circuits break) and the notifications module might rely on a network to send messages. +The lights module might rely on hardware which could fail at any time (perhaps the circuits break) and the notifications module might rely on a network to send messages. If the lights are faulty or the network goes down, the door could potentially stop working and the user wouldn't be able to lock or unlock it anymore.