You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/utils.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -318,8 +318,8 @@ pub mod general {
318
318
println!(
319
319
"You played {} games ({} lost / {} won)",
320
320
stats.won + stats.lost,
321
-
stats.won,
322
-
stats.lost
321
+
stats.lost,
322
+
stats.won
323
323
);
324
324
match stats.fastest_run{
325
325
None => {}
@@ -374,7 +374,7 @@ pub mod general {
374
374
" --sudoku_maker -> asks you to save your field after every turn as a string you can later use as a template"
375
375
);
376
376
println!(
377
-
" --template -> asks you to use a template you obtained with --sudoku-maker before every round, you can also select a standard template (e.g. an empty field, which you normally can't obtain)"
377
+
" --template -> asks you to use a template you obtained with --sudoku_maker before every round, you can also select a standard template (e.g. an empty field, which you normally can't obtain)"
0 commit comments