From 63cf7bc033f499fb943b233db3924abf73ac7893 Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Tue, 28 Apr 2026 19:10:01 -0400 Subject: [PATCH] fix(communication): correct missing closing quote in actuator registry docstring --- harness/communication.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harness/communication.org b/harness/communication.org index 4ec224b..7159006 100644 --- a/harness/communication.org +++ b/harness/communication.org @@ -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)."