summaryrefslogtreecommitdiff
path: root/cider.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-10-19 09:57:40 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2018-10-19 09:58:14 +0200
commit9f4335294db70f7ff1283e3115308ce0aca21175 (patch)
tree6fd98f98fa6ebe0feeeb4fb5ca056dc5a483fdb9 /cider.el
parent47f1122b9758e1288f05dad0210e17e1b8dd81ac (diff)
Tweak some Clojure and ClojureScript references
Diffstat (limited to 'cider.el')
-rw-r--r--cider.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/cider.el b/cider.el
index a41d4389..cefac946 100644
--- a/cider.el
+++ b/cider.el
@@ -699,7 +699,7 @@ Generally you should not disable this unless you run into some faulty check."
(user-error "The shadow-cljs ClojureScript REPL is not available")))
(defun cider-normalize-cljs-init-options (options)
- "Normalize the OPTIONS string used for initializing a CLJS REPL."
+ "Normalize the OPTIONS string used for initializing a ClojureScript REPL."
(if (or (string-prefix-p "{" options)
(string-prefix-p "(" options)
(string-prefix-p "[" options)
@@ -827,7 +827,7 @@ you're working on."
(defvar cider--select-cljs-repl-history nil)
(defun cider-select-cljs-repl (&optional default)
"Select the ClojureScript REPL to use with `cider-jack-in-cljs'.
-DEFAULT is the default CLJS REPL to offer in completion."
+DEFAULT is the default ClojureScript REPL to offer in completion."
(let ((repl-types (mapcar #'car cider-cljs-repl-types)))
(intern (completing-read "Select ClojureScript REPL type: " repl-types
nil nil nil 'cider--select-cljs-repl-history
@@ -870,7 +870,7 @@ nil."
(cider-verify-clojurescript-is-present)
(cider-verify-cljs-repl-requirements cljs-type))
(error
- (message "Invalid CLJS dependency: %S" ex)
+ (message "Invalid ClojureScript dependency: %S" ex)
nil))
(cider-verify-clojurescript-is-present)
(cider-verify-cljs-repl-requirements cljs-type)))
@@ -1034,7 +1034,7 @@ server buffer, in which case a new session for that server is created."
;;;###autoload
(defun cider-connect-clj (&optional params)
- "Initialize a CLJ connection to an nREPL server.
+ "Initialize a Clojure connection to an nREPL server.
PARAMS is a plist optionally containing :host, :port and :project-dir. On
prefix argument, prompt for all the parameters."
(interactive "P")
@@ -1049,7 +1049,7 @@ prefix argument, prompt for all the parameters."
;;;###autoload
(defun cider-connect-cljs (&optional params)
- "Initialize a CLJS connection to an nREPL server.
+ "Initialize a ClojureScript connection to an nREPL server.
PARAMS is a plist optionally containing :host, :port, :project-dir and
:cljs-repl-type (e.g. Node, Figwheel, etc). On prefix, prompt for all the
parameters regardless of their supplied or default values."
@@ -1066,7 +1066,7 @@ parameters regardless of their supplied or default values."
;;;###autoload
(defun cider-connect-clj&cljs (params &optional soft-cljs-start)
- "Initialize a CLJ and CLJS connection to an nREPL server..
+ "Initialize a Clojure and ClojureScript connection to an nREPL server.
PARAMS is a plist optionally containing :host, :port, :project-dir and
:cljs-repl-type (e.g. Node, Figwheel, etc). When SOFT-CLJS-START is
non-nil, don't start if ClojureScript requirements are not met."