Skip to content

Commit 0d4daf4

Browse files
committed
Fix: typo in some error messages
1 parent b87884c commit 0d4daf4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lisp/_prepare.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1870,14 +1870,14 @@ Arguments FNC and ARGS are used for advice `:around'."
18701870
(erase-buffer)
18711871
(insert buf-str))
18721872
(eask--help-display)))
1873-
(eask-error "Help manual missig %s" help-file))))
1873+
(eask-error "Help manual missing %s" help-file))))
18741874

18751875
;;
18761876
;;; Checker
18771877

18781878
(defun eask--checker-existence ()
18791879
"Return errors if required metadata is missing."
1880-
(unless eask-package (eask-error "Missing metadata package; make sure you have create Eask-file with $ eask init!")))
1880+
(unless eask-package (eask-error "Missing metadata package; make sure you have created an Eask-file with $ eask init!")))
18811881

18821882
(defun eask--check-strings (fmt f p &rest args)
18831883
"Test strings (F and P); then print FMT and ARGS if not equal."

0 commit comments

Comments
 (0)