diff --git a/compiling-toy.md b/compiling-toy.md index 81afb0a..7cd9806 100644 --- a/compiling-toy.md +++ b/compiling-toy.md @@ -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.