diff options
author | est31 <MTest31@outlook.com> | 2016-02-24 00:08:53 +0100 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2016-02-24 00:08:53 +0100 |
commit | cea8e97c11b684462f6875e40168691b5c9165e9 (patch) | |
tree | 53093df90867c0ec680117485d8c0c1f1bf51a8d /modules | |
parent | e5c5f58085b8f35f13234598667e306b107f1f56 (diff) |
Fix typo in error
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/gd_parser.cpp | 2 |
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; } |