Skip to content

Commit 72491e5

Browse files
committed
add missing comma
1 parent f426106 commit 72491e5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/en/manuals/editor-scripts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ function M.get_commands()
9797
end
9898
},
9999
{
100-
label = "Minify JSON"
100+
label = "Minify JSON",
101101
locations = {"Assets"},
102102
query = {
103103
selection = {type = "resource", cardinality = "one"}
@@ -371,4 +371,4 @@ Existing non-undoable actions:
371371

372372
You can mix undoable and non-undoable actions. Actions are executed sequentially, hence depending on an order of actions you will end up losing ability to undo parts of that command.
373373

374-
Instead of returning actions from functions that expect them, you can just read and write to files directly using `io.open()`. This will trigger a resource reload that will clear undo history.
374+
Instead of returning actions from functions that expect them, you can just read and write to files directly using `io.open()`. This will trigger a resource reload that will clear undo history.

docs/pl/manuals/editor-scripts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function M.get_commands()
9191
end
9292
},
9393
{
94-
label = "Minify JSON"
94+
label = "Minify JSON",
9595
locations = {"Assets"},
9696
query = {
9797
selection = {type = "resource", cardinality = "one"}

docs/ru/manuals/editor-scripts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function M.get_commands()
8080
end
8181
},
8282
{
83-
label = "Minify JSON"
83+
label = "Minify JSON",
8484
locations = {"Assets"},
8585
query = {
8686
selection = {type = "resource", cardinality = "one"}

docs/zh/manuals/editor-scripts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function M.get_commands()
8787
end
8888
},
8989
{
90-
label = "Minify JSON"
90+
label = "Minify JSON",
9191
locations = {"Assets"},
9292
query = {
9393
selection = {type = "resource", cardinality = "one"}
@@ -240,4 +240,4 @@ end
240240
Language server 定义表可以指定:
241241
- `languages` (必要) — 服务器支持的语言列表, 详见 [这里](https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers) (支持文件扩展名);
242242
- `command` (必要) - 命令及其参数列表
243-
- `watched_files` - 一组带有 `pattern` 键 (a glob) 的表, 用来激活服务器的 [监视文件更改](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#workspace_didChangeWatchedFiles) 通知功能.
243+
- `watched_files` - 一组带有 `pattern` 键 (a glob) 的表, 用来激活服务器的 [监视文件更改](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#workspace_didChangeWatchedFiles) 通知功能.

0 commit comments

Comments
 (0)