Skip to content

Commit e80806d

Browse files
authored
Update spec version in docs
1 parent 56194a3 commit e80806d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/Configuring.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"- `argv`, a list of shell tokens to launch the server in `stdio` mode (as\n",
6363
" opposed to `tcp`),\n",
6464
"- the `languages` which the server will respond to, and\n",
65-
"- the schema `version` of the spec (currently only `1`)\n",
65+
"- the schema `version` of the spec (currently `2`)\n",
6666
"\n",
6767
"```python\n",
6868
"# ./jupyter_notebook_config.json ---------- unique! -----------\n",
@@ -73,7 +73,7 @@
7373
" \"LanguageServerManager\": {\n",
7474
" \"language_servers\": {\n",
7575
" \"a-language-server-implementation\": {\n",
76-
" \"version\": 1,\n",
76+
" \"version\": 2,\n",
7777
" \"argv\": [\"/absolute/path/to/a-language-server\", \"--stdio\"],\n",
7878
" \"languages\": [\"a-language\"]\n",
7979
" }\n",
@@ -106,13 +106,13 @@
106106
" # if installed as a binary\n",
107107
" \"argv\": [shutil.which(\"a-language-server\")],\n",
108108
" \"languages\": [\"a-language\"],\n",
109-
" \"version\": 1\n",
109+
" \"version\": 2\n",
110110
" },\n",
111111
" \"another-language-implementation\": {\n",
112112
" # if run like a script\n",
113113
" \"argv\": [shutil.which(\"another-language-interpreter\"), \"another-language-server\"],\n",
114114
" \"languages\": [\"another-language\"],\n",
115-
" \"version\": 1\n",
115+
" \"version\": 2\n",
116116
" }\n",
117117
"}\n",
118118
"```"

0 commit comments

Comments
 (0)