Browse Source

Merge pull request #106 from adamu/patch-1

fix grammar isn't -> doesn't
Dave Gauer 3 years ago
parent
commit
cd36d45974
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/065_builtins2.zig

+ 1 - 1
exercises/065_builtins2.zig

@@ -121,7 +121,7 @@ pub fn main() void {
     // Alas, we can't use a regular 'for' loop here because
     // 'fields' can only be evaluated at compile time.  It seems
     // like we're overdue to learn about this "comptime" stuff,
-    // isn't it? :-)
+    // doesn't it? :-)
 
     print(".\n", .{});
 }