From 1f5ec78df8d2ae9e9a1a2a5c5bd56fc60aabeea0 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sat, 8 Jun 2024 19:20:30 +0200 Subject: [PATCH] fixed typo --- exercises/106_files.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/106_files.zig b/exercises/106_files.zig index a6131ed..aba07b6 100644 --- a/exercises/106_files.zig +++ b/exercises/106_files.zig @@ -29,7 +29,7 @@ pub fn main() !void { // then we'll try to make a new directory /output/ // to put our output files. cwd.makeDir("output") catch |e| switch (e) { - // there are chance you might want to run this + // there is a chance you might want to run this // program more than once and the path might already // been created, so we'll have to handle this error // by doing nothing