Browse Source

proper pluralization of zero operations completed

master
Jonathan Cobb 3 years ago
parent
commit
314f06f449
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/java/jvc/main/Jvc.java

+ 1
- 1
src/main/java/jvc/main/Jvc.java View File

@@ -51,7 +51,7 @@ public class Jvc extends BaseMain<JvcOptions> {

private void printCompleted(JvcEngine opEngine) {
final int opCount = opEngine.getCompleted().size();
err(">>> jvc: completed " + opCount + " operation" + (opCount > 1 ? "s" : ""));
err(">>> jvc: completed " + opCount + " operation" + (opCount != 1 ? "s" : ""));
}

}

Loading…
Cancel
Save