From: Mark Wooding Date: Sun, 30 Aug 2015 09:58:38 +0000 (+0100) Subject: src/: Fix some docstrings. X-Git-Url: https://git.distorted.org.uk/~mdw/sod/commitdiff_plain/268f7777bf1c2f858ce2c5cb990f3e2ec42f0646 src/: Fix some docstrings. --- diff --git a/src/parser/parser-expr-proto.lisp b/src/parser/parser-expr-proto.lisp index ec35445..929e85a 100644 --- a/src/parser/parser-expr-proto.lisp +++ b/src/parser/parser-expr-proto.lisp @@ -41,7 +41,7 @@ (:documentation "Push VALUE onto the STATE's value stack. - The default message just does that without any fuss. It's unlikely that + The default method just does that without any fuss. It's unlikely that this will need changing unless you invent some really weird values.")) (export 'apply-operator) diff --git a/src/pset-proto.lisp b/src/pset-proto.lisp index e58a928..0263dc7 100644 --- a/src/pset-proto.lisp +++ b/src/pset-proto.lisp @@ -173,7 +173,7 @@ (defun pset-get (pset key) "Look KEY up in PSET and return what we find. - If there's no property by that name, return NIL." + If there's no property by that name, return nil." (values (gethash key (%pset-hash pset)))) (defun pset-store (pset prop)