From 91e467775142590b4ffd1063e61a1edf33679323 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 22 Oct 2017 10:57:56 +0200 Subject: [PATCH] Fix a typo --- lexer/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lexer/main.c b/lexer/main.c index 4572d02..26ba1d5 100644 --- a/lexer/main.c +++ b/lexer/main.c @@ -17,7 +17,7 @@ enum TokenType { } tokenType; const char* tokenTypestr[] = { "MOTCLE", "SECTION", "SSECTION", "NPARA", "MOT", "FIN" }; -/* This looks silly to check for each characters but for debugging, it's just the way to go */ +/* It looks silly to check for each characters but for debugging, it's just the way to go */ bool istAlpha() { if (c == 'a' || c == 'b' || c == 'c' || c == 'd' || c == 'e' || c == 'f' || c == 'g' || \ c == 'h' || c == 'i' || c == 'j' || c == 'k' || c == 'l' || c == 'm' || c == 'n' || \ -- 2.34.1