summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2024-08-04 14:19:05 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2024-08-04 14:19:05 +0200
commitb26e3b2ac488e609896f166d3c48297960e7f598 (patch)
tree2e309e459d4736dd44c7652e838414bc05c61ca1
parent7705473447d49c3346751a5015f1eddda708e9d8 (diff)
Fixed error message through a TAB in the comment, see https://github.com/ziglang/zig/issues/20928
-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 eded880..6f71177 100644
--- a/exercises/103_tokenization.zig
+++ b/exercises/103_tokenization.zig
@@ -119,9 +119,9 @@
// after all we need some practice. Suppose we want to count the words
// of this little poem:
//
-// My name is Ozymandias, King of Kings;
-// Look on my Works, ye Mighty, and despair!
-// by Percy Bysshe Shelley
+// My name is Ozymandias, King of Kings;
+// Look on my Works, ye Mighty, and despair!
+// by Percy Bysshe Shelley
//
//
const std = @import("std");