Skip to content

Commit 06f18ac

Browse files
committed
app: use colons in named helper call args
1 parent e5b888d commit 06f18ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ const createApp = (url: string) => {
542542
html += `${href}(`
543543
for (const arg of args) {
544544
if (typeof arg.name == 'string') {
545-
const display = `${arg.name} = r${i}`;
545+
const display = `${arg.name}: r${i}`;
546546
html += `${regSpan(`r${i}`, `${display}`)}`
547547
} else {
548548
html += `${regSpan(`r${i}`)}`

0 commit comments

Comments
 (0)