Skip to content

Commit

Permalink
Merge pull request #184 from tarsiiformes/typos
Browse files Browse the repository at this point in the history
Fix typos in docstrings and comments
  • Loading branch information
thierryvolpiatto authored Jan 6, 2024
2 parents d604187 + 720d0c7 commit 9e5814a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion async-bytecomp.el
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
;; the new files in the current environment with the old files loaded, creating
;; errors in most packages after upgrades.
;;
;; NB: This package is advicing the function `package--compile'.
;; NB: This package is advising the function `package--compile'.

;;; Code:

Expand Down
4 changes: 2 additions & 2 deletions async.el
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ its FINISH-FUNC is nil."
(plist-get value :async-message)))

(defun async-send (process-or-key &rest args)
"Send the given message to the asychronous child or parent Emacs.
"Send the given message to the asynchronous child or parent Emacs.
To send messages from the parent to a child, PROCESS-OR-KEY is
the child process object. ARGS is a plist. Example:
Expand Down Expand Up @@ -439,7 +439,7 @@ working directory."
(set-marker-insertion-type async-read-marker nil)
(set-process-sentinel proc #'async-when-done)
;; Pass the value of `async-prompt-for-password' to the process
;; filter fn trough the lexical local var prt-for-pwd (Issue#182).
;; filter fn through the lexical local var prt-for-pwd (Issue#182).
(set-process-filter proc (lambda (proc string)
(async-read-from-client
proc string prt-for-pwd)))
Expand Down

0 comments on commit 9e5814a

Please sign in to comment.