We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1da2b74 commit 685c71cCopy full SHA for 685c71c
www/index.js
@@ -538,7 +538,7 @@ async function update(pushHistoryState) {
538
const n_no_sig = currentSyscallTable.syscalls.reduce((acc, sc) => acc + (sc.signature === null), 0)
539
540
sumamryEl.textContent = `${n_syscalls} syscalls`
541
- if (n_esoteric) sumamryEl.textContent += ` (${n_esoteric} esoteric)`
+ if (n_esoteric) sumamryEl.textContent += `, ${n_esoteric} esoteric`
542
if (n_bad_loc) sumamryEl.textContent += `, ${n_bad_loc} non-standard definition` + 's'.substring(0, n_bad_loc ^ 1)
543
if (n_no_loc) sumamryEl.textContent += `, ${n_no_loc} missing location info`
544
if (n_no_sig) sumamryEl.textContent += `, ${n_no_sig} missing signature info`
0 commit comments