Skip to content

Commit

Permalink
Use plural where needed for bottom-page summary
Browse files Browse the repository at this point in the history
  • Loading branch information
mebeim committed Mar 21, 2024
1 parent bc0fddf commit f962a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ async function update(pushHistoryState) {

sumamryEl.textContent = `${n_syscalls} syscalls`
if (n_esoteric) sumamryEl.textContent += ` (${n_esoteric} esoteric)`
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)
if (n_no_loc) sumamryEl.textContent += `, ${n_no_loc} missing location info`
if (n_no_sig) sumamryEl.textContent += `, ${n_no_sig} missing signature info`

Expand Down

0 comments on commit f962a69

Please sign in to comment.