Correctly pluralise "lapses" in output, for real this time
John Smith

John Smith commited on 2022-302 00:45:41
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -258,7 +258,7 @@ local actions = {
258 258
                     endt - start
259 259
                 ))
260 260
                 local s
261
-                if lrc == 1 then s = "s" else s = "" end
261
+                if lrc == 1 then s = "" else s = "s" end
262 262
                 io.write(string.format(
263 263
                     "(%d lapse%s, %f seconds per card)\n",
264 264
                     lrc, s, (endt - start) / math.min(#ctrt, climn)
265 265