浏览代码

Updated to use classification instead of type, more consistent

Samuel W. Flint 9 年之前
父节点
当前提交
cd95e82556
共有 1 个文件被更改,包括 3 次插入3 次删除
  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