diff --git a/bin/plugin/commands/performance.js b/bin/plugin/commands/performance.js index 5ab597616f78d..428e82c2f1212 100644 --- a/bin/plugin/commands/performance.js +++ b/bin/plugin/commands/performance.js @@ -146,7 +146,7 @@ function formatValue( metric, value ) { function printStats( m, s ) { const pp = fixed( ( 100 * ( s.q75 - s.q50 ) ) / s.q50 ); const mp = fixed( ( 100 * ( s.q50 - s.q25 ) ) / s.q50 ); - return `${ formatValue( m, s.q50 ) } ms (±${ pp }/${ mp }%)`; + return `${ formatValue( m, s.q50 ) } +${ pp }% -${ mp }% (${ s.cnt })`; } /**