diff options
| author | Chris Boesch <[email protected]> | 2023-01-14 01:13:56 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-14 01:13:56 +0100 |
| commit | 0b16f7e006f16a167cffb7345a641d58589301ff (patch) | |
| tree | 71666c42e055638e877e6d18bbe8789263b47f0b | |
| parent | 9bf33f3cd6d56a533b6d112ee4612fb141453df1 (diff) | |
| parent | c18ad7883259435cc61045e38129d61b39daca6c (diff) | |
| download | ziglings-0b16f7e006f16a167cffb7345a641d58589301ff.tar.xz ziglings-0b16f7e006f16a167cffb7345a641d58589301ff.zip | |
Merge pull request #138 from fjebaker/main
Exercise 82: typo and type fixes in comment
| -rw-r--r-- | exercises/082_anonymous_structs3.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/082_anonymous_structs3.zig b/exercises/082_anonymous_structs3.zig index 8344321..e5c6839 100644 --- a/exercises/082_anonymous_structs3.zig +++ b/exercises/082_anonymous_structs3.zig @@ -4,8 +4,8 @@ // // .{ // false, -// @as(u32, 15); -// @as(i64, 67.12); +// @as(u32, 15), +// @as(f64, 67.12) // } // // We call these "tuples", which is a term used by many |
