summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-02-15 16:53:37 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2016-02-15 16:53:37 +0200
commitb7271ae2ac711c4045ecaa22225eb1315da7fc13 (patch)
treeee1206184d039bc5864648a4a7fcc6c6a338300c
parentcc47e4dc70c50842abcb294da65e4b7a82fbec99 (diff)
Align the apropos messages with the ones in Emacs itself
-rw-r--r--cider-apropos.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-apropos.el b/cider-apropos.el
index f63b1213..e8deadfb 100644
--- a/cider-apropos.el
+++ b/cider-apropos.el
@@ -106,7 +106,7 @@
The search may be limited to the namespace NS, and may optionally search doc
strings, include private vars, and be case sensitive."
(interactive
- (cons (read-string "Clojure Apropos (a regular expression): ")
+ (cons (read-string "Search for Clojure symbol (a regular expression): ")
(when current-prefix-arg
(list (let ((ns (read-string "Namespace: ")))
(if (string= ns "") nil ns))
@@ -124,6 +124,6 @@ strings, include private vars, and be case sensitive."
(defun cider-apropos-documentation ()
"Shortcut for (cider-apropos <query> nil t)."
(interactive)
- (cider-apropos (read-string "Clojure documentation Apropos (a regular expression): ") nil t))
+ (cider-apropos (read-string "Search for Clojure documentation (a regular expression): ") nil t))
(provide 'cider-apropos)