From d8d40130459d1537f6117a927947cd46c83182b0 Mon Sep 17 00:00:00 2001 From: Johnny Peck Date: Tue, 7 Jan 2020 09:01:32 -0500 Subject: [PATCH] Update the-super-tiny-compiler.js Plural "node" --- the-super-tiny-compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the-super-tiny-compiler.js b/the-super-tiny-compiler.js index 411fa54..42437ca 100755 --- a/the-super-tiny-compiler.js +++ b/the-super-tiny-compiler.js @@ -333,7 +333,7 @@ * * Code generators work several different ways, some compilers will reuse the * tokens from earlier, others will have created a separate representation of - * the code so that they can print node linearly, but from what I can tell most + * the code so that they can print nodes linearly, but from what I can tell most * will use the same AST we just created, which is what we’re going to focus on. * * Effectively our code generator will know how to “print” all of the different