fix(lexer): typo in function call

This commit is contained in:
Matteo Flebus 2026-01-12 21:41:13 +01:00
parent 111f2cf5c2
commit 8a727ebd98

View file

@ -70,7 +70,7 @@ char *stream_init(void)
stream = end_last_token;
}
char *trimed_stream = trim_blanks_left(stream);
char *trimed_stream = trim_blank_left(stream);
remaining_chars -= trimed_stream - stream;
stream = trimed_stream;