Skip to content

Commit 7dd8a80

Browse files
committed
Improve a local's name
1 parent c082a2e commit 7dd8a80

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cider.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ found for the PROJECT-TYPE"
228228
("boot" (cider--boot-resolve-command))
229229
("gradle" (cider--gradle-resolve-command))
230230
(_ (user-error "Unsupported project type `%s'" project-type))))
231-
231+
232232
(defun cider-jack-in-params (project-type)
233233
"Determine the commands params for `cider-jack-in' for the PROJECT-TYPE."
234234
(pcase project-type
@@ -546,11 +546,11 @@ gets associated with it."
546546

547547
(defun cider-select-endpoint ()
548548
"Interactively select the host and port to connect to."
549-
(dolist (ep cider-known-endpoints)
550-
(unless (stringp (or (nth 2 ep)
551-
(nth 1 ep)))
549+
(dolist (endpoint cider-known-endpoints)
550+
(unless (stringp (or (nth 2 endpoint)
551+
(nth 1 endpoint)))
552552
(user-error "The port for %s in `cider-known-endpoints' should be a string"
553-
(nth 0 ep))))
553+
(nth 0 endpoint))))
554554
(let* ((ssh-hosts (cider--ssh-hosts))
555555
(hosts (seq-uniq (append (when cider-host-history
556556
;; history elements are strings of the form "host:port"

0 commit comments

Comments
 (0)