Fix typo in parse_global.c

In parse_def_ident()
This commit is contained in:
Halen84
2024-08-02 20:45:37 -05:00
committed by Christoffer Lerno
parent d91c289bf6
commit 0ec1c80221

View File

@@ -1872,7 +1872,7 @@ static inline Decl *parse_def_ident(ParseContext *c)
}
else if (alias_type == TOKEN_TYPE_IDENT)
{
PRINT_ERROR_HERE("A variable, constant or attribute name was expected here. If you want to define a new type, use 'typedef' instead.");
PRINT_ERROR_HERE("A variable, constant or attribute name was expected here. If you want to define a new type, use 'def' instead.");
}
else
{