fix(communication): correct missing closing quote in actuator registry docstring

This commit is contained in:
2026-04-28 19:10:01 -04:00
parent 27dd58f238
commit 63cf7bc033

View File

@@ -18,7 +18,7 @@ The ~communication.lisp~ module defines the low-level transport and framing logi
** Actuator Registry
#+begin_src lisp
(defvar *actuator-registry* (make-hash-table :test 'equalp)
"Global registry mapping target keywords to their physical actuator functions.
"Global registry mapping target keywords to their physical actuator functions.")
(defun register-actuator (name fn)
"Registers an actuator function. Actuators receive: (ACTION CONTEXT)."