aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/014_while4.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/014_while4.zig')
-rw-r--r--exercises/014_while4.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/014_while4.zig b/exercises/014_while4.zig
index 7b2714e..95aecb0 100644
--- a/exercises/014_while4.zig
+++ b/exercises/014_while4.zig
@@ -15,7 +15,7 @@ const std = @import("std");
pub fn main() void {
var n: u32 = 1;
- // Oh dear! This while loop will go forever!?
+ // Oh dear! This while loop will go forever?!
// Please fix this so the print statement below gives the desired output.
while (true) : (n += 1) {
if (???) ???;