summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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))