From 1c0f20fcf38e736a9e3026798040f3097791bd10 Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Fri, 14 Jul 2017 22:24:55 +0300 Subject: [PATCH] benchmark: fix typo in inspect-proxy PR-URL: https://github.com/nodejs/node/pull/14237 Reviewed-By: Luigi Pinca Reviewed-By: James M Snell --- benchmark/util/inspect-proxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/util/inspect-proxy.js b/benchmark/util/inspect-proxy.js index 92d5a9a47d6dcb..805c520e28745c 100644 --- a/benchmark/util/inspect-proxy.js +++ b/benchmark/util/inspect-proxy.js @@ -9,7 +9,7 @@ const bench = common.createBenchmark(main, { }); function twoDifferentProxies(n) { - // This one should be slower between we're looking up multiple proxies. + // This one should be slower because we're looking up multiple proxies. const proxyA = new Proxy({}, {get: () => {}}); const proxyB = new Proxy({}, {get: () => {}}); bench.start();