1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-03 17:08:35 -05: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 crowlkats
parent 5ceaecbae4
commit 95fc447012
No known key found for this signature in database
GPG key ID: A82C9D461FC483E8

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();