branch: elpa/loopy commit 0f13d310c34b90ff0d82066120062dfff3db8f31 Author: okamsn <oka...@users.noreply.github.com> Commit: okamsn <oka...@users.noreply.github.com>
Fix typos in documentation strings of `when` and `unless`. --- lisp/loopy-commands.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/loopy-commands.el b/lisp/loopy-commands.el index 6fb0c0b20f..e117da3be3 100644 --- a/lisp/loopy-commands.el +++ b/lisp/loopy-commands.el @@ -338,7 +338,7 @@ command are inserted into a `cond' special form." ;;;;;; When (cl-defun loopy--parse-when-command ((_ condition &rest body)) - "Parse `when' as (when CONDITION [COMMANDS]." + "Parse `when' as (when CONDITION [COMMANDS])." (let ((loopy--in-sub-level t)) (loopy--bind-main-body (main other) (loopy--parse-loop-commands body) @@ -347,7 +347,7 @@ command are inserted into a `cond' special form." ;;;;;; Unless (cl-defun loopy--parse-unless-command ((_ condition &rest body)) - "Parse `when' as (when CONDITION [COMMANDS]." + "Parse `unless' as (unless CONDITION [COMMANDS])." (let ((loopy--in-sub-level t)) (loopy--bind-main-body (main other) (loopy--parse-loop-commands body)