1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Goto token name fix

This commit is contained in:
Brian Fiete 2022-10-18 12:50:23 -04:00
parent a2c340cbae
commit 1a5af42338

View file

@ -1404,7 +1404,7 @@ const char* Beefy::BfTokenToString(BfToken token)
case BfToken_Function:
return "function";
case BfToken_Goto:
return "got";
return "goto";
case BfToken_If:
return "if";
case BfToken_Implicit: