From 386d1efd5b0b5374ef8bc6f3b6eece9abb452526 Mon Sep 17 00:00:00 2001 From: james kyle Date: Wed, 31 May 2017 12:48:50 -0700 Subject: [PATCH] Update the-super-tiny-compiler.js --- 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 a9a259c..c57f1ac 100755 --- a/the-super-tiny-compiler.js +++ b/the-super-tiny-compiler.js @@ -259,7 +259,7 @@ * * If we were manipulating this AST directly, instead of creating a separate AST, * we would likely introduce all sorts of abstractions here. But just visiting - * each node in the tree is enough. + * each node in the tree is enough for what we're trying to do. * * The reason I use the word "visiting" is because there is this pattern of how * to represent operations on elements of an object structure.