branch: externals/async
commit e72e96185e486dbd17a8dfbec979ced0b3c60fac
Author: Stefan Kangas <stefankan...@gmail.com>
Commit: Stefan Kangas <stefankan...@gmail.com>

    Fix a typo
---
 async.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/async.el b/async.el
index ad91930d30..64e2fb57e2 100644
--- a/async.el
+++ b/async.el
@@ -282,7 +282,7 @@ its FINISH-FUNC is nil."
        (plist-get value :async-message)))
 
 (defun async-send (&rest args)
-  "Send the given messages to the asychronous Emacs PROCESS."
+  "Send the given messages to the asynchronous Emacs PROCESS."
   (let ((args (append args '(:async-message t))))
     (if async-in-child-emacs
         (if async-callback
@@ -290,7 +290,7 @@ its FINISH-FUNC is nil."
       (async--transmit-sexp (car args) (list 'quote (cdr args))))))
 
 (defun async-receive ()
-  "Send the given messages to the asychronous Emacs PROCESS."
+  "Send the given messages to the asynchronous Emacs PROCESS."
   (async--receive-sexp))
 
 ;;;###autoload

Reply via email to