diff options
| author | Jo Burgard <[email protected]> | 2023-03-14 13:35:20 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-03-14 13:35:20 +0100 |
| commit | b5e16e8d0bb579834a2ad7cf09abc56d8637ebdc (patch) | |
| tree | e845435d0397ef616aacab7cdf1bd00184e7a537 /exercises/080_anonymous_structs.zig | |
| parent | 5ad5bba9182aaa4a38b14ce3a6e38438cd07c439 (diff) | |
| download | ziglings-b5e16e8d0bb579834a2ad7cf09abc56d8637ebdc.tar.xz ziglings-b5e16e8d0bb579834a2ad7cf09abc56d8637ebdc.zip | |
Fix typo
Diffstat (limited to 'exercises/080_anonymous_structs.zig')
| -rw-r--r-- | exercises/080_anonymous_structs.zig | 2 |
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..]; } |
