summaryrefslogtreecommitdiff
path: root/modules/gdscript
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2020-03-11 13:59:18 -0400
committerluz.paz <luzpaz@users.noreply.github.com>2020-03-11 13:59:18 -0400
commit7bf6e5f7732f3fa890561255610f50a65e755adf (patch)
tree7ce9a51814f1264cc21b5cc1ab7baa7439f2e961 /modules/gdscript
parentaeff25f3134c1af34285bb1021c709936cf5377d (diff)
Fix various typos
Found via `codespell`
Diffstat (limited to 'modules/gdscript')
-rw-r--r--modules/gdscript/gdscript_parser.cpp2
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>();