We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc0fddf commit f962a69Copy full SHA for f962a69
www/index.js
@@ -493,7 +493,7 @@ async function update(pushHistoryState) {
493
494
sumamryEl.textContent = `${n_syscalls} syscalls`
495
if (n_esoteric) sumamryEl.textContent += ` (${n_esoteric} esoteric)`
496
- if (n_bad_loc) sumamryEl.textContent += `, ${n_bad_loc} non-standard definitions`
+ if (n_bad_loc) sumamryEl.textContent += `, ${n_bad_loc} non-standard definition` + 's'.substring(0, n_bad_loc ^ 1)
497
if (n_no_loc) sumamryEl.textContent += `, ${n_no_loc} missing location info`
498
if (n_no_sig) sumamryEl.textContent += `, ${n_no_sig} missing signature info`
499
0 commit comments