summaryrefslogtreecommitdiff
path: root/cider-resolve.el
diff options
context:
space:
mode:
Diffstat (limited to 'cider-resolve.el')
-rw-r--r--cider-resolve.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-resolve.el b/cider-resolve.el
index 3c2dc6fd..7963c897 100644
--- a/cider-resolve.el
+++ b/cider-resolve.el
@@ -1,6 +1,6 @@
;;; cider-resolve.el --- Resolve clojure symbols according to current nREPL connection
-;; Copyright © 2015-2018 Bozhidar Batsov, Artur Malabarba and CIDER contributors
+;; Copyright © 2015-2019 Bozhidar Batsov, Artur Malabarba and CIDER contributors
;; Author: Artur Malabarba <bruce.connor.am@gmail.com>
@@ -107,7 +107,7 @@ This will be clojure.core or cljs.core depending on the return value of the
function `cider-repl-type'."
(when-let* ((repl (cider-current-repl)))
(with-current-buffer repl
- (cider-resolve--get-in (if (equal cider-repl-type "cljs")
+ (cider-resolve--get-in (if (eq cider-repl-type 'cljs)
"cljs.core"
"clojure.core")))))