From 6caccd3d0c225d36adfae521f9cbd4219e70aea1 Mon Sep 17 00:00:00 2001 From: Marco Heisig Date: Sun, 3 Jun 2018 12:36:59 +0200 Subject: [PATCH] Fix a small typo. The documentation claims LIST-STRUCTURE returns the keyword :CIRCULAR, while it actually returns :CIRCULAT. --- list-structure.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/list-structure.lisp b/list-structure.lisp index 7e510e0..da428bc 100644 --- a/list-structure.lisp +++ b/list-structure.lisp @@ -38,7 +38,7 @@ finally (return (values (hash-table-count table) (cond ((null remaining) :proper) ((atom remaining) :dotted) - (t :circulat))))))) + (t :circular))))))) (defun proper-list-p (cst) (eq (nth-value 1 (list-structure cst)) :proper))