From 91849e2d6ad58468ca05b7b1bcf9d0f2a76bd306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Tue, 29 May 2018 22:23:30 +0300 Subject: [PATCH] Fix a comment referring to previous (never committed) implementation --- ircbot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircbot.js b/ircbot.js index 229518d..c672356 100644 --- a/ircbot.js +++ b/ircbot.js @@ -43,7 +43,7 @@ function cachedCompile(program, enableExtensions = true) { let {compiled, extensions} = programCache.get(program); // If extensions enabled state is the same as ours, we can - // just update the useOrder and return this + // just return this // If not, we need to compile a new program if(extensions == enableExtensions) { return compiled;