diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-03-31 14:06:10 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-03-31 14:07:29 +0200 |
commit | a647fb3e623c8e5c14427c2631ee61f132951709 (patch) | |
tree | 015fd365f1bc74187869365ffcb13011b27c0a5c /modules/gdscript | |
parent | 0d15f6344b9cad2a3221231ff8d1d5226970e468 (diff) |
Fix typos with codespell
Using codespell 2.2-dev from current git.
Fix a couple incorrect uses of gendered pronouns.
Diffstat (limited to 'modules/gdscript')
-rw-r--r-- | modules/gdscript/gdscript_analyzer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_analyzer.cpp b/modules/gdscript/gdscript_analyzer.cpp index 6f25b06e87..00931961b7 100644 --- a/modules/gdscript/gdscript_analyzer.cpp +++ b/modules/gdscript/gdscript_analyzer.cpp @@ -647,7 +647,7 @@ void GDScriptAnalyzer::resolve_class_interface(GDScriptParser::ClassNode *p_clas } } - // Check if initalizer is an unset identifier (ie: a variable within scope, but declared below) + // Check if initializer is an unset identifier (ie: a variable within scope, but declared below) if (member.variable->initializer && !member.variable->initializer->get_datatype().is_set()) { if (member.variable->initializer->type == GDScriptParser::Node::IDENTIFIER) { GDScriptParser::IdentifierNode *initializer_identifier = static_cast<GDScriptParser::IdentifierNode *>(member.variable->initializer); |