0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-29 08:58:01 -04:00

fix(lsp): remove excessive line breaks in status page (#15364)

Fixes #15359
This commit is contained in:
Outvi V 2022-08-02 06:29:05 +08:00 committed by GitHub
parent 96290f1a66
commit 924aa31fa8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2972,7 +2972,7 @@ impl Inner {
for average in averages {
writeln!(
contents,
"|{}|{}ms|{}|\n",
"|{}|{}ms|{}|",
average.name, average.average_duration, average.count
)
.unwrap();