pointless tweaks

pull/3284/head
Thibault Duplessis 2017-07-15 14:04:34 +02:00
parent 7ced81d9cb
commit 265ffb02b8
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ object JsQuantity {
case "fr" | "ff" | "kab" =>
"""
// french
return (c < 2) ? 'one' : 'other';
return c < 2 ? 'one' : 'other';
"""
case "cs" | "sk" =>
"""
@ -122,7 +122,7 @@ object JsQuantity {
"""
case _ =>
"""
return (c == 1) ? 'one' : 'other';
return c == 1 ? 'one' : 'other';
"""
}