From d264d92b9bc6d338cbcbdc852d6a14c4a89e3e69 Mon Sep 17 00:00:00 2001 From: Andrew Clark Date: Thu, 31 Mar 2016 10:51:37 -0700 Subject: [PATCH] "existance" -> "existence" --- super-tiny-compiler.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/super-tiny-compiler.js b/super-tiny-compiler.js index 214842e..c9e5c0b 100644 --- a/super-tiny-compiler.js +++ b/super-tiny-compiler.js @@ -396,7 +396,7 @@ function tokenizer(input) { // isn't actually important for us to store as a token. We would only throw // it out later. // - // So here we're just going to test for existance and if it does exist we're + // So here we're just going to test for existence and if it does exist we're // going to just `continue` on. var WHITESPACE = /\s/; if (WHITESPACE.test(char)) { @@ -666,7 +666,7 @@ function traverser(ast, visitor) { // pass both to our visitor methods. function traverseNode(node, parent) { - // We start by testing for the existance of a method on the visitor with a + // We start by testing for the existence of a method on the visitor with a // matching `type`. var method = visitor[node.type];