Minor plural/singular change

This commit is contained in:
Wouter J 2015-01-18 01:17:40 +01:00 committed by WouterJ
parent 820b973dab
commit b3cfc1abc0

View File

@ -144,7 +144,7 @@
tbody.appendChild(rows); tbody.appendChild(rows);
if (infoSpan) { if (infoSpan) {
var text = requestStack.length + ' calls'; var text = requestStack.length + ' call' + (requestStack.length > 1 ? 's' : '');
infoSpan.textContent = text; infoSpan.textContent = text;
} }
} else { } else {