From 9fe959799dec20502eb2480bc4f1d60cabf2e850 Mon Sep 17 00:00:00 2001 From: Violet White Date: Thu, 14 Sep 2023 20:59:42 -0700 Subject: [PATCH] Fix TokenType.kt --- parser/src/main/kotlin/gay/pizza/pork/parser/TokenType.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/src/main/kotlin/gay/pizza/pork/parser/TokenType.kt b/parser/src/main/kotlin/gay/pizza/pork/parser/TokenType.kt index ec06d1d..223cbb3 100644 --- a/parser/src/main/kotlin/gay/pizza/pork/parser/TokenType.kt +++ b/parser/src/main/kotlin/gay/pizza/pork/parser/TokenType.kt @@ -57,7 +57,7 @@ enum class TokenType(vararg properties: TokenTypeProperty) { Break(ManyChars("break"), KeywordFamily), Import(ManyChars("import"), KeywordFamily), Impork(ManyChars("impork"), KeywordFamily), - PorkLoad(ManyChar("porkload"), KeywordFamily), + PorkLoad(ManyChars("porkload"), KeywordFamily), Export(ManyChars("export"), KeywordFamily), Func(ManyChars("func"), KeywordFamily), Native(ManyChars("native"), KeywordFamily),