Skip to content

Commit c0421cb

Browse files
author
zho
committed
addressed a ai review
1 parent f9edba6 commit c0421cb

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

benchmarks/latency.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ function formatTable(rows: BenchmarkResult[]): string {
112112
out.push(
113113
line([
114114
r.name.slice(0, colWidths[0] ?? 28),
115-
String(r.p50),
116-
String(r.p95),
117-
String(r.p99),
118-
String(r.min),
119-
String(r.max),
115+
r.p50.toFixed(4),
116+
r.p95.toFixed(4),
117+
r.p99.toFixed(4),
118+
r.min.toFixed(4),
119+
r.max.toFixed(4),
120120
])
121121
);
122122
}

0 commit comments

Comments
 (0)