Update compiling-toy.md

This commit is contained in:
2022-10-30 15:09:25 +11:00
committed by GitHub
parent 66e2d5d9f1
commit 32d1f06700

View File

@@ -30,7 +30,7 @@ Lexer lexer;
initLexer(&lexer, source);
```
The lexer, when invoked, will produce a break down the string of characters into individual `Tokens`.
The lexer, when invoked, will break down the string of characters into individual `Tokens`.
The lexer does not need to be freed after use, however the source code does.