aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/099_formatting.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2024-05-06 07:25:18 +0000
committerChris Boesch <chrboesch@noreply.codeberg.org>2024-05-06 07:25:18 +0000
commit8345e839b09bd12947f547598fe9790859736023 (patch)
tree9c6010e10ad6542366315864d0b5f645b6d5dbe4 /exercises/099_formatting.zig
parent1ac46d7a42ae90006c99f9c4a9bfdb435de30cac (diff)
parent6c23f2682e08b8c24bca33a18dc1d9770259a061 (diff)
Merge pull request 'Fix some typos' (#89) from typos into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/89
Diffstat (limited to 'exercises/099_formatting.zig')
-rw-r--r--exercises/099_formatting.zig8
1 files changed, 4 insertions, 4 deletions
diff --git a/exercises/099_formatting.zig b/exercises/099_formatting.zig
index 07af3ba..1952c5e 100644
--- a/exercises/099_formatting.zig
+++ b/exercises/099_formatting.zig
@@ -19,10 +19,10 @@
// https://github.com/ziglang/zig/blob/master/lib/std/fmt.zig#L29
//
// Zig already has a very nice selection of formatting options.
-// 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 a file. The latter is useful when
+// These can be used in different ways, but generally 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 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.