Don't write Lisp symbol names in uppercase: use `...' instead.
[sod] / src / c-types-impl.lisp
index b37833a..7dd7b84 100644 (file)
   "Return whether LIST-A and LIST-B match.
 
    They must have the same number of arguments, and each argument must have
-   the same type, or be :ELLIPSIS.  The argument names are not inspected."
+   the same type, or be `:ellipsis'.  The argument names are not inspected."
   (and (= (length list-a) (length list-b))
        (every (lambda (arg-a arg-b)
                (if (eq arg-a :ellipsis)
 (defun commentify-argument-names (arguments)
   "Return an argument list with the arguments commentified.
 
-   That is, with each argument name passed through COMMENTIFY-ARGUMENT-NAME."
+   That is, with each argument name passed through
+   `commentify-argument-name'."
   (mapcar (lambda (arg)
            (if (eq arg :ellipsis)
                arg