Skip to content

Commit 8821806

Browse files
authored
Merge pull request #3265 from leslykinzel/master
fix: typo dose -> does
2 parents 24b9faa + fb49f09 commit 8821806

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
@@ -2,6 +2,7 @@
22

33
## Unreleased
44
<!-- Add all new changes here. They will be moved under a version at release -->
5+
* `FIX` Typos in a few error messages.
56
* `FIX` Incorrect inject-field message for extra table field in exact class
67
* `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.
78
* `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)