Skip to content

Commit 19dcc14

Browse files
committed
Improve a couple of docstrings and comments a bit
1 parent 19ba244 commit 19dcc14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cider.el

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -872,12 +872,12 @@ message in the REPL area."
872872
cider-version middleware-version))))
873873

874874
(defun cider--subscribe-repl-to-server-out ()
875-
"Subscribe to the server's *out*."
875+
"Subscribe to the nREPL server's *out*."
876876
(cider-nrepl-send-request '("op" "out-subscribe")
877877
(cider-interactive-eval-handler (current-buffer))))
878878

879879
(defun cider--connected-handler ()
880-
"Handle cider initialization after nREPL connection has been established.
880+
"Handle CIDER initialization after nREPL connection has been established.
881881
This function is appended to `nrepl-connected-hook' in the client process
882882
buffer."
883883
;; `nrepl-connected-hook' is run in the connection buffer
@@ -893,9 +893,9 @@ buffer."
893893
(cider--subscribe-repl-to-server-out)
894894
(when cider-auto-mode
895895
(cider-enable-on-existing-clojure-buffers))
896-
;; Middleware on cider-nrepl side is deferred until first usage, but
896+
;; Middleware on cider-nrepl's side is deferred until first usage, but
897897
;; loading middleware concurrently can lead to occasional "require" issues
898-
;; (likely a clojure bug). Thus, we load the heavy debug middleware towards
898+
;; (likely a Clojure bug). Thus, we load the heavy debug middleware towards
899899
;; the end, allowing for the faster "server-out" middleware to load
900900
;; first.
901901
(cider--debug-init-connection)

0 commit comments

Comments
 (0)