summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/editor
diff options
context:
space:
mode:
authorryanabx <ryanbrue@hotmail.com>2023-10-22 14:46:26 -0500
committerryanabx <ryanbrue@hotmail.com>2023-10-23 08:48:36 -0500
commite945a8fbade9ed61920e0af4e91078a53bd2b8e8 (patch)
tree3343f8cdb628dd057dd0914652f8c327c855fc5b /modules/gdscript/editor
parent8c25a98fdf68dc388eddaefa188f3386236cdfe4 (diff)
downloadredot-engine-e945a8fbade9ed61920e0af4e91078a53bd2b8e8.tar.gz
Fix typo in gdscript_parser.h and gdscript_translation_parser_plugin.cpp
Diffstat (limited to 'modules/gdscript/editor')
-rw-r--r--modules/gdscript/editor/gdscript_translation_parser_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/editor/gdscript_translation_parser_plugin.cpp b/modules/gdscript/editor/gdscript_translation_parser_plugin.cpp
index becc2876f9..9128f104b8 100644
--- a/modules/gdscript/editor/gdscript_translation_parser_plugin.cpp
+++ b/modules/gdscript/editor/gdscript_translation_parser_plugin.cpp
@@ -40,7 +40,7 @@ void GDScriptEditorTranslationParserPlugin::get_recognized_extensions(List<Strin
}
Error GDScriptEditorTranslationParserPlugin::parse_file(const String &p_path, Vector<String> *r_ids, Vector<Vector<String>> *r_ids_ctx_plural) {
- // Extract all translatable strings using the parsed tree from GDSriptParser.
+ // Extract all translatable strings using the parsed tree from GDScriptParser.
// The strategy is to find all ExpressionNode and AssignmentNode from the tree and extract strings if relevant, i.e
// Search strings in ExpressionNode -> CallNode -> tr(), set_text(), set_placeholder() etc.
// Search strings in AssignmentNode -> text = "__", tooltip_text = "__" etc.