From d0bd564bf0562b4797b746bd5d7aa03179d0b045 Mon Sep 17 00:00:00 2001 From: Kyle Shevlin Date: Wed, 31 May 2017 10:44:35 -0700 Subject: [PATCH] Add Missing "Not" The way the sentence reads seems to imply the word "not" has been accidentally omitted. If my correction is incorrect, I suggest that the sentence be adjusted to say, "Visiting each node in the tree is enough". --- 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..2c6c65f 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 not enough. * * The reason I use the word "visiting" is because there is this pattern of how * to represent operations on elements of an object structure.