summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-08-11 05:50:19 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-08-11 05:50:19 +0200
commit97347442fdc848d0529aac2c51ce61501fc9ed23 (patch)
treed195964c212e154ae01d90df2e817f18529bce45 /.config
parenta780352859cedcc37f286ff83d6666b955775e35 (diff)
emacs: Fix docstring
Diffstat (limited to '.config')
-rw-r--r--.config/emacs/config.org2
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))