You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fix typo in gdscript_parser.h and gdscript_translation_parser_plugin.cpp
This commit is contained in:
@@ -178,11 +178,11 @@ public:
|
||||
|
||||
bool operator==(const DataType &p_other) const {
|
||||
if (type_source == UNDETECTED || p_other.type_source == UNDETECTED) {
|
||||
return true; // Can be consireded equal for parsing purposes.
|
||||
return true; // Can be considered equal for parsing purposes.
|
||||
}
|
||||
|
||||
if (type_source == INFERRED || p_other.type_source == INFERRED) {
|
||||
return true; // Can be consireded equal for parsing purposes.
|
||||
return true; // Can be considered equal for parsing purposes.
|
||||
}
|
||||
|
||||
if (kind != p_other.kind) {
|
||||
|
||||
Reference in New Issue
Block a user