(cl-copy-tree): Doc fix.
authorKarl Heuer <kwzh@gnu.org>
Thu, 4 Jan 1996 23:29:58 +0000 (23:29 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 4 Jan 1996 23:29:58 +0000 (23:29 +0000)
lisp/emacs-lisp/cl-extra.el

index d60b277..bf57c41 100644 (file)
@@ -588,7 +588,7 @@ If START or END is negative, it counts from the end."
 (defun cl-copy-tree (tree &optional vecp)
   "Make a copy of TREE.
 If TREE is a cons cell, this recursively copies both its car and its cdr.
-Constrast to copy-sequence, which copies only along the cdrs.  With second
+Contrast to copy-sequence, which copies only along the cdrs.  With second
 argument VECP, this copies vectors as well as conses."
   (if (consp tree)
       (let ((p (setq tree (copy-list tree))))