From 8a5168605bedcf5883fc689e31f1ed376c6c13d0 Mon Sep 17 00:00:00 2001 From: Dave Liepmann Date: Wed, 13 Sep 2023 08:23:47 +0200 Subject: [PATCH] fix typo: "scoket" REPL --- content/reference/repl_and_main.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/reference/repl_and_main.adoc b/content/reference/repl_and_main.adoc index e378c1f5..978a56ad 100644 --- a/content/reference/repl_and_main.adoc +++ b/content/reference/repl_and_main.adoc @@ -191,7 +191,7 @@ Following is an example of starting a socket server with a repl listener. This c -Dclojure.server.repl="{:port 5555 :accept clojure.core.server/repl}" ---- -With the Clojure CLI, use `-J` flag to pass the option to the JVM (note that this will also start a local REPL in addition to the scoket REPL): +With the Clojure CLI, use `-J` flag to pass the option to the JVM (note that this will also start a local REPL in addition to the socket REPL): [source,shell] ----