summaryrefslogtreecommitdiff
path: root/cider-apropos.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2016-02-14 14:23:13 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2016-02-14 14:23:13 +0000
commitc5ec06cb813d6c63465764a03036e77470bc2b8e (patch)
tree64b4f9d978589f1be5283c90672fb1a49162d697 /cider-apropos.el
parentc7b6137fb5fc98bd85587cf9e166943caca8edd2 (diff)
Clarify that the apropos is a regexp
See #1563.
Diffstat (limited to 'cider-apropos.el')
-rw-r--r--cider-apropos.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-apropos.el b/cider-apropos.el
index 6a76cd58..328096f1 100644
--- a/cider-apropos.el
+++ b/cider-apropos.el
@@ -107,7 +107,7 @@ The search may be limited to the namespace NS, and may optionally search doc
strings, include private vars, and be case sensitive."
(interactive
(if current-prefix-arg
- (list (read-string "Clojure Apropos: ")
+ (list (read-string "Clojure Apropos (a regular expression): ")
(let ((ns (read-string "Namespace: ")))
(if (string= ns "") nil ns))
(y-or-n-p "Search doc strings? ")