Skip to content

Commit 1c1f002

Browse files
authored
Merge branch 'master' into alias-enum-doc-export
2 parents f2e803e + 8821806 commit 1c1f002

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased
44
<!-- Add all new changes here. They will be moved under a version at release -->
55
* `NEW` Doc output now contains file paths for `@alias` and `@enum` types
6+
* `FIX` Typos in a few error messages.
67
* `FIX` Incorrect inject-field message for extra table field in exact class
78
* `CHG` Rename configuration option `Lua.diagnostics.disableScheme` to `Lua.diagnostics.validScheme` and improve its description. Now it enables diagnostics for Lua files that use the specified scheme.
89
* `FIX` adds the `|lambda|` operator to the `Lua.runtime.nonstandardSymbol` configuration template, which allows the use of that option. Previously, support for it existed in the parser, but we could not actually use the option because it is not recognised in the configuration.

locale/en-us/script.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ CONFIG_MODIFY_FAIL_NO_WORKSPACE =
604604
[[
605605
Failed to modify settings:
606606
* The current mode is single-file mode, server cannot create `.luarc.json` without workspace.
607-
* The language client dose not support modifying settings from the server side.
607+
* The language client does not support modifying settings from the server side.
608608
609609
Please modify following settings manually:
610610
{}

locale/pt-br/script.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ CONFIG_MODIFY_FAIL_NO_WORKSPACE = -- TODO: need translate!
604604
[[
605605
Failed to modify settings:
606606
* The current mode is single-file mode, server cannot create `.luarc.json` without workspace.
607-
* The language client dose not support modifying settings from the server side.
607+
* The language client does not support modifying settings from the server side.
608608
609609
Please modify following settings manually:
610610
{}

script/client.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ local function tryModifyClientGlobal(finalChanges)
480480
end
481481
log.info('tryModifyClientGlobal', inspect(finalChanges))
482482
if not m.getOption 'changeConfiguration' then
483-
log.info('Client dose not support modifying config')
483+
log.info('Client does not support modifying config')
484484
return
485485
end
486486
local changes = {}

0 commit comments

Comments
 (0)