Fix typo in gdscript_parser.h and gdscript_translation_parser_plugin.cpp
This commit is contained in:
parent
8c25a98fdf
commit
e945a8fbad
2 changed files with 3 additions and 3 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue