summaryrefslogtreecommitdiff
path: root/cider-browse-spec.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2017-07-08 00:00:41 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2017-07-08 00:00:41 +0300
commit3b459990655bf556ad99f865b40c475797871d39 (patch)
tree9309cabf7e39671f97c712dccd934ac1958cfd2f /cider-browse-spec.el
parentc640348c5e6c30748b90f13b1dbf17db90020ab8 (diff)
Correct a couple of references to the spec browser regex filter
Diffstat (limited to 'cider-browse-spec.el')
-rw-r--r--cider-browse-spec.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-browse-spec.el b/cider-browse-spec.el
index 20b4cca2..e08947e2 100644
--- a/cider-browse-spec.el
+++ b/cider-browse-spec.el
@@ -304,7 +304,7 @@ a more user friendly representation of SPEC-FORM."
(defun cider-browse-spec-all (filter-regex)
"List all loaded specs in BUFFER filtered by FILTER-REGEX.
If FILTER-REGEX is empty, list all specs in the registry."
- (interactive (list (read-string "Filter prefix: ")))
+ (interactive (list (read-string "Filter regex: ")))
(with-current-buffer (cider-popup-buffer cider-browse-spec-buffer t)
(let ((specs (cider-sync-request:spec-list filter-regex)))
(cider-browse-spec--clear-nav-history)
@@ -312,7 +312,7 @@ If FILTER-REGEX is empty, list all specs in the registry."
(cider-browse-spec--draw-list-buffer (current-buffer)
(if (string-empty-p filter-regex)
"All specs in registry"
- (format "All specs with `%s' prefix in registry" filter-regex))
+ (format "All specs matching regex `%s' in registry" filter-regex))
specs))))
(defun cider-browse-spec--browse-at-point ()