@@ -872,12 +872,12 @@ message in the REPL area."
872
872
cider-version middleware-version))))
873
873
874
874
(defun cider--subscribe-repl-to-server-out ()
875
- " Subscribe to the server's *out*."
875
+ " Subscribe to the nREPL server's *out*."
876
876
(cider-nrepl-send-request '(" op" " out-subscribe" )
877
877
(cider-interactive-eval-handler (current-buffer ))))
878
878
879
879
(defun cider--connected-handler ()
880
- " Handle cider initialization after nREPL connection has been established.
880
+ " Handle CIDER initialization after nREPL connection has been established.
881
881
This function is appended to `nrepl-connected-hook' in the client process
882
882
buffer."
883
883
; ; `nrepl-connected-hook' is run in the connection buffer
@@ -893,9 +893,9 @@ buffer."
893
893
(cider--subscribe-repl-to-server-out)
894
894
(when cider-auto-mode
895
895
(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
897
897
; ; 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
899
899
; ; the end, allowing for the faster "server-out" middleware to load
900
900
; ; first.
901
901
(cider--debug-init-connection)
0 commit comments