Skip to content

Commit 983c60b

Browse files
committed
slightly reword julia command help strings
1 parent 41526a7 commit 983c60b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/execute/julia.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -854,11 +854,11 @@ function populateJuliaEngineCommand(command: Command) {
854854
"Get status information on the currently running Julia server process.",
855855
).action(logStatus)
856856
.command("kill", "Kill server")
857-
.description("Kills the control server if it is currently running.")
857+
.description("Kill the control server if it is currently running. This will also kill all notebook worker processes.")
858858
.action(killJuliaServer)
859859
.command("log", "Print julia server log")
860860
.description(
861-
"Prints the julia server log file if it exists which can be used to diagnose problems.",
861+
"Print the content of the julia server log file if it exists which can be used to diagnose problems.",
862862
)
863863
.action(printJuliaServerLog)
864864
.command(
@@ -876,7 +876,7 @@ function populateJuliaEngineCommand(command: Command) {
876876
})
877877
.command("stop", "Stop the server")
878878
.description(
879-
"Sends a message to the server that it should stop all notebooks and itself. Running notebooks will not be interrupted.",
879+
"Send a message to the server that it should close all notebooks and exit. This will fail if any notebooks are not idle.",
880880
)
881881
.action(stopServer);
882882
return;

0 commit comments

Comments
 (0)