diff --git a/tests/frontpage.d.ref b/tests/frontpage.d.ref index 640ab33..9d82c63 100644 --- a/tests/frontpage.d.ref +++ b/tests/frontpage.d.ref @@ -10,5 +10,5 @@ void main() ++lines; sumLength += line.length; } - writeln("Average line length: ", lines ? sumLength / lines:0); + writeln("Average line length: ", lines ? sumLength / lines : 0); } diff --git a/tests/guessnumber.d.ref b/tests/guessnumber.d.ref index 8304502..7d8b62b 100644 --- a/tests/guessnumber.d.ref +++ b/tests/guessnumber.d.ref @@ -30,6 +30,6 @@ void main() writeln(" Well guessed."); break; } - writeln(answer < target ? " Too low.":" Too high."); + writeln(answer < target ? " Too low." : " Too high."); } }