summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2016-02-24 00:08:53 +0100
committerest31 <MTest31@outlook.com>2016-02-24 00:08:53 +0100
commitcea8e97c11b684462f6875e40168691b5c9165e9 (patch)
tree53093df90867c0ec680117485d8c0c1f1bf51a8d /modules
parente5c5f58085b8f35f13234598667e306b107f1f56 (diff)
Fix typo in error
Diffstat (limited to 'modules')
-rw-r--r--modules/gdscript/gd_parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_parser.cpp b/modules/gdscript/gd_parser.cpp
index b6e8478846..4f572b7b6e 100644
--- a/modules/gdscript/gd_parser.cpp
+++ b/modules/gdscript/gd_parser.cpp
@@ -1790,7 +1790,7 @@ void GDParser::_parse_block(BlockNode *p_block,bool p_static) {
p_block->sub_blocks.push_back(cf_for->body);
if (!_enter_indent_block(cf_for->body)) {
- _set_error("Expected indented block after 'while'");
+ _set_error("Expected indented block after 'for'");
p_block->end_line=tokenizer->get_token_line();
return;
}