Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
P-p-H-d committed Jun 1, 2024
1 parent cf8c2af commit 8987288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/ex11-variant01.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ static void f(void)
// Initialize, set as an integer of value '12' & afterward clear the object
// () around 12 means that we want to 'emplace' object using the input '12' to construct the object in-place,
// rather than setting it from an already existing 'obj_t'.
// It checks for the type of 12, find it is an integer, and initalize o with this value
// It checks for the type of 12, find it is an integer, and initialize o with this value
// It won't work if there is multiple compatible type in the variant
M_LET( (o, (12)), obj_t) {
print_obj(o, "2nd init");
Expand Down

0 comments on commit 8987288

Please sign in to comment.