Skip to content

Commit 7618c67

Browse files
committed
Remove trailing whitespaces
1 parent 948eb08 commit 7618c67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/lexer.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ void lex(void* input_void) {
3838
token_value.tk_int = *input - '0';
3939
} break;
4040

41-
// Operators
41+
// Operators
4242
case '+': case '-': {
4343
token_kind = TK_OP;
4444
token_value.tk_op = *input;
@@ -65,7 +65,7 @@ int main(int argc, char* argv[]){
6565
coroutine_init();
6666
{
6767
coroutine_go(lex, argv[1]);
68-
68+
6969
// Consume those tokens
7070
bool quit = false;
7171
while(!quit && coroutine_alive() > 1){
@@ -82,4 +82,4 @@ int main(int argc, char* argv[]){
8282
coroutine_finish();
8383

8484
return 0;
85-
}
85+
}

0 commit comments

Comments
 (0)