浏览代码

add missing comma

Konstantinos Kaloutas 6 月之前
父节点
当前提交
72491e51cc

+ 2 - 2
docs/en/manuals/editor-scripts.md

@@ -97,7 +97,7 @@ function M.get_commands()
       end
       end
     },
     },
     {
     {
-      label = "Minify JSON"
+      label = "Minify JSON",
       locations = {"Assets"},
       locations = {"Assets"},
       query = {
       query = {
         selection = {type = "resource", cardinality = "one"}
         selection = {type = "resource", cardinality = "one"}
@@ -371,4 +371,4 @@ Existing non-undoable actions:
 
 
 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.
 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.
 
 
-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.
+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.

+ 1 - 1
docs/pl/manuals/editor-scripts.md

@@ -91,7 +91,7 @@ function M.get_commands()
       end
       end
     },
     },
     {
     {
-      label = "Minify JSON"
+      label = "Minify JSON",
       locations = {"Assets"},
       locations = {"Assets"},
       query = {
       query = {
         selection = {type = "resource", cardinality = "one"}
         selection = {type = "resource", cardinality = "one"}

+ 1 - 1
docs/ru/manuals/editor-scripts.md

@@ -80,7 +80,7 @@ function M.get_commands()
       end
       end
     },
     },
     {
     {
-      label = "Minify JSON"
+      label = "Minify JSON",
       locations = {"Assets"},
       locations = {"Assets"},
       query = {
       query = {
         selection = {type = "resource", cardinality = "one"}
         selection = {type = "resource", cardinality = "one"}

+ 2 - 2
docs/zh/manuals/editor-scripts.md

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