chiark / gitweb /
Update automatically managed build utilities.
[sod] / src / parser / parser-expr-proto.lisp
index 7fc2609fc7a60f5b14d78f4653ae0454ea580461..929e85ad5514fae9b619ead6049d5954d55a04bf 100644 (file)
@@ -41,7 +41,7 @@ (defgeneric push-value (value state)
   (: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)
@@ -154,7 +154,7 @@ (defclass prefix-operator ()
 
 (export 'simple-operator)
 (defclass simple-operator ()
-  ((function :initarg :function :reader operator-function)
+  ((%function :initarg :function :reader operator-function)
    (name :initarg :name :initform "<unnamed operator>"
         :reader operator-name))
   (:documentation