Skip to content

Commit

Permalink
nrepl -> nREPL
Browse files Browse the repository at this point in the history
  • Loading branch information
swannodette committed Mar 24, 2018
1 parent 3f24b32 commit e951c9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/clojure/cljs/repl/browser.clj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

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

(def ext->mime-type
{".html" "text/html"
Expand Down
2 changes: 1 addition & 1 deletion src/main/clojure/cljs/repl/node.clj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

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

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

0 comments on commit e951c9a

Please sign in to comment.