aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/099_formatting.zig
diff options
context:
space:
mode:
authorKim SHrier <gitkim@westryn.net>2023-05-07 03:33:55 -0600
committerKim SHrier <gitkim@westryn.net>2023-05-07 03:33:55 -0600
commit2b2c396237d9e737590195ccddbadb8783d85cab (patch)
treebed32e8503b3230af7887a14a8ecc8609660ea33 /exercises/099_formatting.zig
parenta446d67992d6035cc6c1fba9d019e9d67f84a79c (diff)
Add missing word "a"
Diffstat (limited to 'exercises/099_formatting.zig')
-rw-r--r--exercises/099_formatting.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/099_formatting.zig b/exercises/099_formatting.zig
index fc73338..07af3ba 100644
--- a/exercises/099_formatting.zig
+++ b/exercises/099_formatting.zig
@@ -22,7 +22,7 @@
// These can be used in different ways, but typically to convert
// numerical values into various text representations. The
// results can be used for direct output to a terminal or stored
-// for later use or written to file. The latter is useful when
+// for later use or written to a file. The latter is useful when
// large amounts of data are to be processed by other programs.
//
// In Ziglings, we are concerned with the output to the console.