Author: abaine Date: Sun Aug 19 12:09:48 2007 New Revision: 157
Modified: trunk/funds/src/trees/constructors.lisp Log: Added documentation to make-binary-tree and make-avl-tree.
Modified: trunk/funds/src/trees/constructors.lisp ============================================================================== --- trunk/funds/src/trees/constructors.lisp (original) +++ trunk/funds/src/trees/constructors.lisp Sun Aug 19 12:09:48 2007 @@ -27,8 +27,10 @@ +avl-leaf+)
(defun make-binary-tree () + "An empty binary tree." (make-bt-leaf))
(defun make-avl-tree () + "An empty AVL tree." (make-avl-leaf))