Merge pull request #67 from WolframResearch/bugfix/function-name-typo-2

WolframLanguageForJupyter.m: fix typo in function name
This commit is contained in:
cc-wr 2019-12-03 11:57:11 -05:00 committed by GitHub
commit 780488b2ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ splitPath :=
(* find Jupyter installation path *)
(* returns above *)
findJupyerPath[] :=
findJupyterPath[] :=
SelectFirst[
splitPath,
(* check every directory in PATH to see if a Jupyter binary is a member *)
@ -211,7 +211,7 @@ configureJupyter[specs_Association, removeQ_?BooleanQ, removeAllQ_?BooleanQ] :=
(* if no Jupyter installation path provided, determine it from PATH *)
If[
MissingQ[jupyterPath],
jupyterPath = findJupyerPath[];
jupyterPath = findJupyterPath[];
(* if Jupyter not on PATH, message *)
If[MissingQ[jupyterPath],
Message[ConfigureJupyter::notfound, "Jupyter"];