]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typo in emacs-news-mode
authorPo Lu <luangruo@yahoo.com>
Wed, 4 May 2022 09:15:24 +0000 (17:15 +0800)
committerPo Lu <luangruo@yahoo.com>
Wed, 4 May 2022 09:16:26 +0000 (17:16 +0800)
* lisp/textmodes/emacs-news-mode.el
(emacs-news-count-untagged-entries): Fix typo in message when
there are a pural amount of untagged entries.

lisp/textmodes/emacs-news-mode.el

index 2ebd4aa82964652c58cabcf71bddf3de1f0e1ae7..fdb3cb862842fdc663ae6845a48d4bbe406b241b 100644 (file)
@@ -158,7 +158,7 @@ untagged NEWS entry."
         (setq i (1+ i)))
       (message (if (= i 1)
                    "There's 1 untagged entry"
-                 (format "There's %s untagged entries" i))))))
+                 (format "There are %s untagged entries" i))))))
 
 (defun emacs-news--buttonize ()
   "Make manual and symbol references into buttons."