aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2024-02-11 14:07:37 +0000
committerChris Boesch <chrboesch@noreply.codeberg.org>2024-02-11 14:07:37 +0000
commit8257ccb5c8bb35a3f7720bfebbe8c9ab603d3565 (patch)
tree6a35a79e811fc98d947c776197b902f797a52130 /exercises
parent4b1ae6117ce77123c689602e0a04bb616c92ca19 (diff)
Text improvement
closes #47
Diffstat (limited to 'exercises')
-rw-r--r--exercises/103_tokenization.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/103_tokenization.zig b/exercises/103_tokenization.zig
index 7f59766..eded880 100644
--- a/exercises/103_tokenization.zig
+++ b/exercises/103_tokenization.zig
@@ -1,9 +1,9 @@
//
// The functionality of the standard library is becoming increasingly
-// important in Zig. On the one hand, it is helpful to look at how
+// 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. On the other hand,
-// these standard functions are part of the basic equipment of Zig.
+// 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.
// Therefore it is worthwhile to deal with them also in Ziglings.