fix(communication): correct unclosed string in validator

This commit is contained in:
2026-04-28 19:10:34 -04:00
parent 63cf7bc033
commit 4ff9d519be

View File

@@ -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))