aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJo Burgard <mail@joburgard.com>2023-03-14 13:35:20 +0100
committerGitHub <noreply@github.com>2023-03-14 13:35:20 +0100
commitb5e16e8d0bb579834a2ad7cf09abc56d8637ebdc (patch)
treee845435d0397ef616aacab7cdf1bd00184e7a537
parent5ad5bba9182aaa4a38b14ce3a6e38438cd07c439 (diff)
Fix typo
-rw-r--r--exercises/080_anonymous_structs.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/080_anonymous_structs.zig b/exercises/080_anonymous_structs.zig
index 0ca8f0c..8205641 100644
--- a/exercises/080_anonymous_structs.zig
+++ b/exercises/080_anonymous_structs.zig
@@ -78,7 +78,7 @@ pub fn main() void {
// Perhaps you remember the "narcissistic fix" for the type name
// in Ex. 065? We're going to do the same thing here: use a hard-
// coded slice to return the type name. That's just so our output
-// look prettier. Indulge your vanity. Programmers are beautiful.
+// looks prettier. Indulge your vanity. Programmers are beautiful.
fn stripFname(mytype: []const u8) []const u8 {
return mytype[22..];
}