Skip to content

Commit 2b052cd

Browse files
committed
Fix typo: eask link messages presented => present
1 parent 1a5faf4 commit 2b052cd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lisp/link/add.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
(when (file-exists-p link-path)
4040
(eask-msg "")
4141
(eask-with-progress
42-
(ansi-yellow "!! The link is already presented; override the existing link... ")
42+
(ansi-yellow "!! The link is already present; overriding the existing link... ")
4343
(eask-link-delete-symlink link-path)
4444
(ansi-yellow "done !!")))
4545
(make-symbolic-link source link-path)
@@ -104,12 +104,12 @@
104104
(format " - [1/2] Generating %s file... " autoloads-file)
105105
(unless autoloads-file-presented
106106
(eask-with-verbosity 'debug (eask-call "generate/autoloads")))
107-
(if autoloads-file-presented "already presented" "done ✓"))
107+
(if autoloads-file-presented "already present" "done ✓"))
108108
(eask-with-progress
109109
(format " - [2/2] Generating %s file... " pkg-file)
110110
(unless pkg-file-presented
111111
(eask-with-verbosity 'debug (eask-call "generate/pkg-file")))
112-
(if pkg-file-presented "already presented" "done ✓")))
112+
(if pkg-file-presented "already present" "done ✓")))
113113
(eask-link-add--create source)
114114
(when (and (zerop (length links)) ; if no link previously,
115115
(= 1 (length (eask-link-list)))) ; and first link created!

lisp/link/delete.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
(eask-help "link/delete"))
5252
;; No link to delete
5353
((zerop (length links))
54-
(eask-info "No links presented; tasks ended with no operation"))
54+
(eask-info "No links present; task ended with no operation"))
5555
;; Link not found
5656
((cl-some (lambda (name)
5757
(not (member name link-names)))

0 commit comments

Comments
 (0)