From 32d1f06700cdb39f0b9eb962505ac5aa5bd5743c Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sun, 30 Oct 2022 15:09:25 +1100 Subject: [PATCH] Update compiling-toy.md --- compiling-toy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.