summaryrefslogtreecommitdiff
path: root/exercises/103_tokenization.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-02-27 19:43:31 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-02-27 19:43:31 +0100
commit88510735e13f8c5cd7bbb2d08ba1cbfd407dca04 (patch)
tree26b711143cd31e89d3a2489d2ac6ab562e899eea /exercises/103_tokenization.zig
parent8c119bebdc66becac60e7ef035a993e422bd8972 (diff)
parent07031c5daac4291e4d23599a944b84e6b434f9c2 (diff)
Merge branch 'main' into emphasize-for-loop-range
Diffstat (limited to 'exercises/103_tokenization.zig')
-rw-r--r--exercises/103_tokenization.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/103_tokenization.zig b/exercises/103_tokenization.zig
index 972e8e8..7ac56cb 100644
--- a/exercises/103_tokenization.zig
+++ b/exercises/103_tokenization.zig
@@ -2,7 +2,7 @@
// The functionality of the standard library is becoming increasingly
// important in Zig. First of all, it is helpful to take a look at how
// the individual functions are implemented. Because this is wonderfully
-// suitable as a template for your own functions. In addition these
+// suitable as a template for your own functions. In addition, these
// standard functions are part of the basic configuration of Zig.
//
// This means that they are always available on every system.