From 3932e78315694b2d9e7a8983bce4233151c64c56 Mon Sep 17 00:00:00 2001 From: Tj Holowaychuk Date: Fri, 17 Sep 2010 19:03:24 -0700 Subject: [PATCH] Swap + / - --- bench.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bench.js b/bench.js index 9d6add460b..1ac69d8365 100644 --- a/bench.js +++ b/bench.js @@ -92,8 +92,8 @@ function report(label) { : 33 : 32 , synopsis = c > p - ? '-' + (c - p) - : '+' + (p - c); + ? '+' + (c - p) + : '-' + (p - c); while (synopsis.length + label.length < 20) synopsis = ' ' + synopsis; console.log(' \x1b[' + col + ';1m%s\x1b[0m: %s', label, synopsis); console.log(' \x1b[33mprev\x1b[0m: %d ms', p);