summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_parser.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-07-10 13:08:11 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-07-10 13:08:11 +0200
commit8a06ec979e03a056d75bc484e24955e562099ace (patch)
treeebb0d8f5853a3a43f228f1db098aec55a98b269a /modules/gdscript/gdscript_parser.cpp
parent7030ac555f6af936174097c4642e60c1a6b0877b (diff)
downloadredot-engine-8a06ec979e03a056d75bc484e24955e562099ace.tar.gz
Change explicit 'Godot 4.0' references to 'Godot 4'
Fixes #79276.
Diffstat (limited to 'modules/gdscript/gdscript_parser.cpp')
-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 e17ee0668f..13838ee0a1 100644
--- a/modules/gdscript/gdscript_parser.cpp
+++ b/modules/gdscript/gdscript_parser.cpp
@@ -3229,7 +3229,7 @@ GDScriptParser::ExpressionNode *GDScriptParser::parse_type_test(ExpressionNode *
}
GDScriptParser::ExpressionNode *GDScriptParser::parse_yield(ExpressionNode *p_previous_operand, bool p_can_assign) {
- push_error(R"("yield" was removed in Godot 4.0. Use "await" instead.)");
+ push_error(R"("yield" was removed in Godot 4. Use "await" instead.)");
return nullptr;
}