diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-11 05:50:19 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-11 05:50:19 +0200 |
commit | 97347442fdc848d0529aac2c51ce61501fc9ed23 (patch) | |
tree | d195964c212e154ae01d90df2e817f18529bce45 | |
parent | a780352859cedcc37f286ff83d6666b955775e35 (diff) |
emacs: Fix docstring
-rw-r--r-- | .config/emacs/config.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index f5a8e7a..c35aa53 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -185,7 +185,7 @@ make it just that little bit easier for me: #+BEGIN_SRC elisp (defmacro mm-for-each (sequence &rest body) - "Execute BODY for each element of SEQUENCE. The variable ‘_’ is automatically + "Execute BODY for each element of SEQUENCE. The variable ‘x’ is automatically set to the current subject of the iteration." (declare (indent defun)) `(mapc (lambda (x) ,@body) ,sequence)) |