Commit 9aa5beff authored by Murukesh Mohanan's avatar Murukesh Mohanan

Oops in plural check

parent ba7965a8
Pipeline #1236 failed with stage
......@@ -36,7 +36,7 @@ function initializeClock(id, endtime) {
var minutesElem = clock.querySelector('#minutes');
function plural(n, w, wp) {
if ((n % 10) == 1) {
if (n == 1) {
return n + ' ' + w;
}
return n + ' ' + wp;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment