minor #13439 [WebProfilerBundle] Minor plural/singular change (WouterJ)

This PR was merged into the 2.6 branch.

Discussion
----------

[WebProfilerBundle] Minor plural/singular change

| Q   | A
| --- | ---
| License | MIT
| Fixed tickets | -

Commits
-------

b3cfc1a Minor plural/singular change
This commit is contained in:
Fabien Potencier 2015-01-19 16:17:25 +01:00
commit a38fde3fab
1 changed files with 1 additions and 1 deletions

View File

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