summaryrefslogtreecommitdiff
path: root/cider-macroexpansion.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2016-02-06 23:31:10 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2016-02-06 23:31:10 +0000
commit0758324d0a177b894adfa3b113eb3544c4859ded (patch)
tree9092a1eda4a2bfd61dae5a9d70ea61fc393872ea /cider-macroexpansion.el
parentcbe74f0b3459481879d081894f7295c9ed4a4814 (diff)
Switch to grave quotes for consistency with other places
Diffstat (limited to 'cider-macroexpansion.el')
-rw-r--r--cider-macroexpansion.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/cider-macroexpansion.el b/cider-macroexpansion.el
index e4fe2a4d..3b87d31d 100644
--- a/cider-macroexpansion.el
+++ b/cider-macroexpansion.el
@@ -108,29 +108,29 @@ This variable specifies both what was expanded and the expander.")
;;;###autoload
(defun cider-macroexpand-1 (&optional prefix)
- "Invoke \\='macroexpand-1\\=' on the expression preceding point.
-If invoked with a PREFIX argument, use \\='macroexpand\\=' instead of
-\\='macroexpand-1\\='."
+ "Invoke \\=`macroexpand-1\\=` on the expression preceding point.
+If invoked with a PREFIX argument, use \\=`macroexpand\\=` instead of
+\\=`macroexpand-1\\=`."
(interactive "P")
(let ((expander (if prefix "macroexpand" "macroexpand-1")))
(cider-macroexpand-expr expander (cider-last-sexp))))
(defun cider-macroexpand-1-inplace (&optional prefix)
- "Perform inplace \\='macroexpand-1\\=' on the expression preceding point.
-If invoked with a PREFIX argument, use \\='macroexpand\\=' instead of
-\\='macroexpand-1\\='."
+ "Perform inplace \\=`macroexpand-1\\=` on the expression preceding point.
+If invoked with a PREFIX argument, use \\=`macroexpand\\=` instead of
+\\=`macroexpand-1\\=`."
(interactive "P")
(let ((expander (if prefix "macroexpand" "macroexpand-1")))
(cider-macroexpand-expr-inplace expander)))
;;;###autoload
(defun cider-macroexpand-all ()
- "Invoke \\='clojure.walk/macroexpand-all\\=' on the expression preceding point."
+ "Invoke \\=`clojure.walk/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 \\=`clojure.walk/macroexpand-all\\=` on the expression preceding point."
(interactive)
(cider-macroexpand-expr-inplace "macroexpand-all"))