summaryrefslogtreecommitdiff
path: root/cider-client.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-09-26 13:25:05 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2018-09-26 13:25:05 +0300
commit3141c5d7de74528e3a75f0951fc57f08fec1b700 (patch)
tree9bd4bc885f656ee14e6e694e0968decce199e31d /cider-client.el
parent2607afa6b6dd880fe86d52721e731f5ce21a316e (diff)
Fix an error message
I deleted one argument too many in the previous commit.
Diffstat (limited to 'cider-client.el')
-rw-r--r--cider-client.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-client.el b/cider-client.el
index 285f0038..c9fb8685 100644
--- a/cider-client.el
+++ b/cider-client.el
@@ -145,7 +145,7 @@ to the file backing the current buffer. The command falls back to
"Check for support of middleware op OP.
Signal an error if it is not supported."
(unless (cider-nrepl-op-supported-p op)
- (user-error "`%s' requires the nREPL op \"%s\" (provided by cider-nrepl)" this-command)))
+ (user-error "`%s' requires the nREPL op \"%s\" (provided by cider-nrepl)" this-command op)))
(defun cider-nrepl-send-request (request callback &optional connection)
"Send REQUEST and register response handler CALLBACK.