Browse Source

Fix typo in Parser Error message

curtisxk38 8 years ago
parent
commit
d35fab7382
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/gdscript/gd_parser.cpp

+ 1 - 1
modules/gdscript/gd_parser.cpp

@@ -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;
 				}