From b26e3b2ac488e609896f166d3c48297960e7f598 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sun, 4 Aug 2024 14:19:05 +0200 Subject: [PATCH] Fixed error message through a TAB in the comment, see https://github.com/ziglang/zig/issues/20928 --- exercises/103_tokenization.zig | 6 +++--- 1 file 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");