1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Fix typo in Parser Error message

This commit is contained in:
curtisxk38
2017-04-05 23:11:05 -04:00
parent cbf49ddc51
commit d35fab7382

View File

@@ -2420,7 +2420,7 @@ void GDParser::_parse_block(BlockNode *p_block, bool p_static) {
p_block->sub_blocks.push_back(cf_if->body);
if (!_enter_indent_block(cf_if->body)) {
_set_error("Expected intended block after 'if'");
_set_error("Expected indented block after 'if'");
p_block->end_line = tokenizer->get_token_line();
return;
}