Skip to content

Commit 685c71c

Browse files
committed
Improve footer summary formatting
1 parent 1da2b74 commit 685c71c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ async function update(pushHistoryState) {
538538
const n_no_sig = currentSyscallTable.syscalls.reduce((acc, sc) => acc + (sc.signature === null), 0)
539539

540540
sumamryEl.textContent = `${n_syscalls} syscalls`
541-
if (n_esoteric) sumamryEl.textContent += ` (${n_esoteric} esoteric)`
541+
if (n_esoteric) sumamryEl.textContent += `, ${n_esoteric} esoteric`
542542
if (n_bad_loc) sumamryEl.textContent += `, ${n_bad_loc} non-standard definition` + 's'.substring(0, n_bad_loc ^ 1)
543543
if (n_no_loc) sumamryEl.textContent += `, ${n_no_loc} missing location info`
544544
if (n_no_sig) sumamryEl.textContent += `, ${n_no_sig} missing signature info`

0 commit comments

Comments
 (0)