]> git.eshelyaron.com Git - emacs.git/commitdiff
(elint-error, elint-warning): Fix typo.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 17 Oct 2002 16:49:14 +0000 (16:49 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 17 Oct 2002 16:49:14 +0000 (16:49 +0000)
lisp/emacs-lisp/elint.el

index 1d289471aaf712bf5e95b59eec895a8368a8b402..502094fd376a3e85b0d5929d6bdff376188f3e84 100644 (file)
@@ -609,14 +609,14 @@ CODE can be a lambda expression, a macro, or byte-compiled code."
 ;; to reflect different seriousness of linting errors
 
 (defun elint-error (string &rest args)
-  "Report an linting error.
+  "Report a linting error.
 STRING and ARGS are thrown on `format' to get the message."
   (let ((errstr (apply 'format string args)))
     (elint-log-message errstr)
     ))
 
 (defun elint-warning (string &rest args)
-  "Report an linting warning.
+  "Report a linting warning.
 STRING and ARGS are thrown on `format' to get the message."
   (let ((errstr (apply 'format string args)))
     (elint-log-message errstr)