From ed3102c2d384358fff0ae99bbef83ccd686fadbd Mon Sep 17 00:00:00 2001 From: Daniel Dinnyes Date: Sun, 26 Oct 2025 12:40:38 +0000 Subject: [PATCH] Fix typo in comment for close-signal atom --- src/hitchhiker/outboard.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hitchhiker/outboard.clj b/src/hitchhiker/outboard.clj index 821738e..f5d2ac0 100644 --- a/src/hitchhiker/outboard.clj +++ b/src/hitchhiker/outboard.clj @@ -22,7 +22,7 @@ ;; The update-queue is a blocking queue of functions which will be applied to the outboard ;; The tree-atom is an atom containing the latest view of the outboard. This is for snapshotting -;; The close signal is an atom which, when it's set to :shutdown, causes the outboard to shut its in-memory portions down +;; The close-signal is an atom which, when it's set to :shutdown, causes the outboard to shut its in-memory portions down (defrecord OutboardConnection [update-queue tree-atom close-signal thread tree-name]) (defonce ^:private refcount-expiry-thread (redis/start-expiry-thread!))