Skip to content

Commit 0eaeaf4

Browse files
committed
Improve the error message of cider--find-ns
1 parent 27f9e2e commit 0eaeaf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cider-interaction.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ Invert meaning of `cider-prompt-for-symbol' if PREFIX indicates it should be."
488488
Optionally open it in a different window if OTHER-WINDOW is truthy."
489489
(if-let* ((path (cider-sync-request:ns-path ns)))
490490
(cider-jump-to (cider-find-file path) nil other-window)
491-
(user-error "Can't find %s" ns)))
491+
(user-error "Can't find namespace `%s'" ns)))
492492

493493
(defun cider-find-ns (&optional arg ns)
494494
"Find the file containing NS.

0 commit comments

Comments
 (0)