From 4ff9d519bea44c00008de1b156b5e79d613498f1 Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Tue, 28 Apr 2026 19:10:34 -0400 Subject: [PATCH] fix(communication): correct unclosed string in validator --- harness/communication.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harness/communication.org b/harness/communication.org index 7159006..e69d347 100644 --- a/harness/communication.org +++ b/harness/communication.org @@ -84,7 +84,7 @@ The ~communication.lisp~ module defines the low-level transport and framing logi (defun validate-communication-protocol-schema (msg) "Strict structural validation for incoming protocol messages." - (unless (listp msg) (error "Message must be a plist) + (unless (listp msg) (error "Message must be a plist")) (let ((type (proto-get msg :type))) (unless (member type '(:REQUEST :EVENT :RESPONSE :LOG :STATUS)) (error "Invalid message type '~a'" type))