summaryrefslogtreecommitdiff
path: root/cider-macroexpansion.el
diff options
context:
space:
mode:
Diffstat (limited to 'cider-macroexpansion.el')
-rw-r--r--cider-macroexpansion.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-macroexpansion.el b/cider-macroexpansion.el
index 473c6333..5b5249c6 100644
--- a/cider-macroexpansion.el
+++ b/cider-macroexpansion.el
@@ -126,12 +126,12 @@ If invoked with a PREFIX argument, use \\=`macroexpand\\=` instead of
;;;###autoload
(defun cider-macroexpand-all ()
- "Invoke \\=`clojure.walk/macroexpand-all\\=` on the expression preceding point."
+ "Invoke \\=`macroexpand-all\\=` on the expression preceding point."
(interactive)
(cider-macroexpand-expr "macroexpand-all" (cider-last-sexp)))
(defun cider-macroexpand-all-inplace ()
- "Perform inplace \\=`clojure.walk/macroexpand-all\\=` on the expression preceding point."
+ "Perform inplace \\=`macroexpand-all\\=` on the expression preceding point."
(interactive)
(cider-macroexpand-expr-inplace "macroexpand-all"))