From 71c3f9ad5ccedbab23ea16f5940a2d4e8a5eae58 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Sun, 12 Apr 2020 17:05:17 +0200 Subject: [PATCH] doc --- doc/repl.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/repl.md b/doc/repl.md index e48c3072..6fbc35ac 100644 --- a/doc/repl.md +++ b/doc/repl.md @@ -89,8 +89,8 @@ Editor plugins known to work with the babashka nREPL server: The babashka nREPL server does not write an `.nrepl-port` file at startup, but you can easily write a script that launches the server and writes the file: - ``` clojure - #!/usr/bin/env bb +``` clojure +#!/usr/bin/env bb (import [java.net ServerSocket] [java.io File] @@ -107,7 +107,7 @@ you can easily write a script that launches the server and writes the file: (spit ".nrepl-port" nrepl-port) (.deleteOnExit (File. ".nrepl-port")) (.waitFor proc)) - ``` +``` ### Debugging the nREPL server