1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fmt: prevent possible trailing whitespace in wrapped infixes (#9573)

This commit is contained in:
Lukas Neubert
2021-04-03 18:30:25 +02:00
committed by GitHub
parent 646d46b4dc
commit 0eb59cf2bd
9 changed files with 27 additions and 8 deletions

View File

@@ -54,7 +54,7 @@ fn main() {
date := time.unix(commit_date.int())
mut out := os.create('table.html') ?
// Place the new row on top
table =
table =
'<tr>
<td>$date.format()</td>
<td><a target=_blank href="https://github.com/vlang/v/commit/$commit">$commit</a></td>