mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 22:21:18 +00:00
Fix typos with codespell
Found via `codespell -q 3 --skip="./thirdparty,./editor/translations" -I ../godot-word-whitelist.txt`
Whitelist consists of:
```
ang
doubleclick
lod
nd
que
te
unselect
```
(cherry picked from commit 612ab4bbc6)
This commit is contained in:
parent
40018e995c
commit
751806b5c7
55 changed files with 82 additions and 82 deletions
|
|
@ -4071,7 +4071,7 @@ void GDScriptParser::_parse_class(ClassNode *p_class) {
|
|||
ConstantNode *cn = static_cast<ConstantNode *>(subexpr);
|
||||
if (cn->value.get_type() == Variant::NIL) {
|
||||
|
||||
_set_error("Can't accept a null constant expression for infering export type.");
|
||||
_set_error("Can't accept a null constant expression for inferring export type.");
|
||||
return;
|
||||
}
|
||||
member._export.type = cn->value.get_type();
|
||||
|
|
@ -4207,7 +4207,7 @@ void GDScriptParser::_parse_class(ClassNode *p_class) {
|
|||
|
||||
} break;
|
||||
case GDScriptTokenizer::TK_PR_ENUM: {
|
||||
//mutiple constant declarations..
|
||||
//multiple constant declarations..
|
||||
|
||||
int last_assign = -1; // Incremented by 1 right before the assingment.
|
||||
String enum_name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue