From aa74dde367af48ee7ec4fa29b37c453936b57895 Mon Sep 17 00:00:00 2001 From: susubub Date: Wed, 17 Apr 2024 20:04:43 -0300 Subject: [PATCH] fixing little typo on exercise 107_files2.zig --- exercises/107_files2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/107_files2.zig b/exercises/107_files2.zig index dadfdf6..3023d52 100644 --- a/exercises/107_files2.zig +++ b/exercises/107_files2.zig @@ -13,7 +13,7 @@ // - First, we open the {project_root}/output/ directory // - Secondly, we open file `zigling.txt` in that directory // - then, we initalize an array of character with all letter 'A', and print it -// - Afte that, we read the content of the file to the array +// - After that, we read the content of the file to the array // - Finally, we print out the read content const std = @import("std");