Skip to content

Commit e951c9a

Browse files
committed
nrepl -> nREPL
1 parent 3f24b32 commit e951c9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/clojure/cljs/repl/browser.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
(defn thread-name []
3333
(let [name (.getName (Thread/currentThread))]
34-
(if (string/starts-with? name "nrepl") "main" name)))
34+
(if (string/starts-with? name "nREPL") "main" name)))
3535

3636
(def ext->mime-type
3737
{".html" "text/html"

src/main/clojure/cljs/repl/node.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
(defn thread-name []
3232
(let [name (.getName (Thread/currentThread))]
33-
(if (string/starts-with? name "nrepl") "main" name)))
33+
(if (string/starts-with? name "nREPL") "main" name)))
3434

3535
(defn create-socket [^String host port]
3636
(let [socket (Socket. host (int port))

0 commit comments

Comments
 (0)