diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-12 10:25:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-12 10:25:48 +0100 |
commit | 14b41d0fc9fd615f17a8a082cd2bbfb9fea7f0a8 (patch) | |
tree | 7ce9a51814f1264cc21b5cc1ab7baa7439f2e961 /modules/gdscript/gdscript_parser.cpp | |
parent | aeff25f3134c1af34285bb1021c709936cf5377d (diff) | |
parent | 7bf6e5f7732f3fa890561255610f50a65e755adf (diff) | |
download | redot-engine-14b41d0fc9fd615f17a8a082cd2bbfb9fea7f0a8.tar.gz |
Merge pull request #36987 from luzpaz/typos
Fix various typos
Diffstat (limited to 'modules/gdscript/gdscript_parser.cpp')
-rw-r--r-- | modules/gdscript/gdscript_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp index 353c79d6bb..b42fcba7d3 100644 --- a/modules/gdscript/gdscript_parser.cpp +++ b/modules/gdscript/gdscript_parser.cpp @@ -1517,7 +1517,7 @@ GDScriptParser::Node *GDScriptParser::_parse_expression(Node *p_parent, bool p_s } } - //consecutively do unary opeators + //consecutively do unary operators for (int i = expr_pos - 1; i >= next_op; i--) { OperatorNode *op = alloc_node<OperatorNode>(); |