summaryrefslogtreecommitdiff
path: root/benchmark/util/format.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/util/format.js')
-rw-r--r--benchmark/util/format.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/util/format.js b/benchmark/util/format.js
index 82e25b4c4c..55ce76e1db 100644
--- a/benchmark/util/format.js
+++ b/benchmark/util/format.js
@@ -17,7 +17,7 @@ const bench = common.createBenchmark(main, {
const inputs = {
'string': ['Hello, my name is %s', 'fred'],
'number': ['Hi, I was born in %d', 1942],
- 'object': ['An error occurred %j', {msg: 'This is an error', code: 'ERR'}],
+ 'object': ['An error occurred %j', { msg: 'This is an error', code: 'ERR' }],
'unknown': ['hello %a', 'test'],
'no-replace': [1, 2]
};