From 56c63c8c1242f22e28a0c3cb9b3a28bbee6a5262 Mon Sep 17 00:00:00 2001 From: overlookmotel Date: Thu, 21 Dec 2023 04:10:26 +0000 Subject: [PATCH] Instrument: Correct typo in code comment [nocode] --- lib/instrument/visitors/eval.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/instrument/visitors/eval.js b/lib/instrument/visitors/eval.js index 367036ad..b448c617 100644 --- a/lib/instrument/visitors/eval.js +++ b/lib/instrument/visitors/eval.js @@ -246,7 +246,7 @@ function instrumentEvalIdentifier(node, parent, key, state) { /** * Determine if `eval` identifier refers to global `eval` (not var called `eval` defined in file). - * @param {Object} block - Block object that `eval` in in. + * @param {Object} block - Block object that `eval` is in. * @returns {boolean} - `true` if `eval` is a global var */ function isGlobalEval(block) {