summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVse Mozhet Byt <vsemozhetbyt@gmail.com>2017-07-14 22:24:55 +0300
committerJames M Snell <jasnell@gmail.com>2017-07-14 14:21:24 -0700
commite8b8d940d503a3c51abdda216a34010f7a42410a (patch)
tree00f24c6a0ded3ad4b77ad0709cf23f3c1fa6a17e
parentdce2f06f80048f768c99ca40518aa4c234842011 (diff)
downloadandroid-node-v8-e8b8d940d503a3c51abdda216a34010f7a42410a.tar.gz
android-node-v8-e8b8d940d503a3c51abdda216a34010f7a42410a.tar.bz2
android-node-v8-e8b8d940d503a3c51abdda216a34010f7a42410a.zip
benchmark: fix typo in inspect-proxy
PR-URL: https://github.com/nodejs/node/pull/14237 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
-rw-r--r--benchmark/util/inspect-proxy.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/util/inspect-proxy.js b/benchmark/util/inspect-proxy.js
index 92d5a9a47d..805c520e28 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();