Browse Source

Updated to use classification instead of type, more consistent

Samuel W. Flint 9 years ago
parent
commit
cd95e82556
1 changed files with 3 additions and 3 deletions
  1. 3 3
      manipulation.org

+ 3 - 3
manipulation.org

@@ -113,10 +113,10 @@ To check a classification, the classifier is obtained, unless the specified clas
 #+Caption: Check Classification
 #+Name: check-classification
 #+BEGIN_SRC lisp
-  (defun classified-as-p (expression type)
-    (if (eq '* type)
+  (defun classified-as-p (expression classification)
+    (if (eq '* classification)
         t
-        (funcall (cdr (assoc type *classifications*))
+        (funcall (cdr (assoc classification *classifications*))
                  expression)))
 #+END_SRC