diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-02-24 09:32:51 +0000 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-02-26 10:40:00 +0000 |
commit | f0daf1292ccfd6f07b8ded28e29f01919c43022e (patch) | |
tree | 56548b3837e0cd89b13d23682fddf1c09e232d38 /lisp/emacs-lisp | |
parent | 3e1ec5d87de2953a8ba0d08602a45b050641ef47 (diff) | |
download | emacs-f0daf1292ccfd6f07b8ded28e29f01919c43022e.tar.gz emacs-f0daf1292ccfd6f07b8ded28e29f01919c43022e.tar.bz2 emacs-f0daf1292ccfd6f07b8ded28e29f01919c43022e.zip |
* Two grammar fixes into async hooks doc
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index af7963289dc..7054c588999 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -85,7 +85,7 @@ performed at `comp-speed' > 0." (defcustom comp-async-cu-done-hook nil "This hook is run whenever an asyncronous native compilation -finish compiling a single compilation unit. +finishes compiling a single compilation unit. The argument FILE passed to the function is the filename used as compilation input." :type 'hook @@ -93,7 +93,7 @@ compilation input." (defcustom comp-async-all-done-hook nil "This hook is run whenever the asyncronous native compilation -finished compiling all input files." +finishes compiling all input files." :type 'hook :group 'comp) |