Skip to content

Commit

Permalink
Merge pull request 'Correct comment to match code in 076_sentinels' (…
Browse files Browse the repository at this point in the history
…#33) from mttrb/ziglings:076-comment into main

Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/33
  • Loading branch information
Chris Boesch committed Jan 4, 2024
2 parents e7c106b + 1ed03cf commit b7dfa4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/076_sentinels.zig
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ pub fn main() void {
fn printSequence(my_seq: anytype) void {
const my_typeinfo = @typeInfo(@TypeOf(my_seq));

// The TypeInfo contained in my_type is a union. We use a
// switch to handle printing the Array or Pointer fields,
// The TypeInfo contained in my_typeinfo is a union. We use
// a switch to handle printing the Array or Pointer fields,
// depending on which type of my_seq was passed in:
switch (my_typeinfo) {
.Array => {
Expand Down

0 comments on commit b7dfa4c

Please sign in to comment.