]> git.eshelyaron.com Git - emacs.git/commitdiff
(remove): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Fri, 25 Jan 2002 05:05:16 +0000 (05:05 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 25 Jan 2002 05:05:16 +0000 (05:05 +0000)
lisp/subr.el

index ed9ea9af81c824af4d9c7f42b019a4c36d4ecee9..4b33973afd4d772a5be0d386a19ac45703f2bb7c 100644 (file)
@@ -155,7 +155,7 @@ If N is bigger than the length of X, return X."
           x))))
 
 (defun remove (elt seq)
-  "Return a copy of SEQ with all occurences of ELT removed.
+  "Return a copy of SEQ with all occurrences of ELT removed.
 SEQ must be a list, vector, or string.  The comparison is done with `equal'."
   (if (nlistp seq)
       ;; If SEQ isn't a list, there's no need to copy SEQ because