From 356dd6711f8f5e6cb73b94ad7b7974d94501b9de Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Tue, 28 Apr 2026 18:19:42 -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 8054bf2..3964bb2 100644 --- a/harness/communication.org +++ b/harness/communication.org @@ -26,7 +26,7 @@ The ~communication.lisp~ module defines the low-level transport and framing logi (in-package :opencortex) (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)."