From 8987288a1093b43fb36153065fb2b403a7c975e0 Mon Sep 17 00:00:00 2001 From: Patrick Pelissier Date: Sat, 1 Jun 2024 11:05:35 +0200 Subject: [PATCH] Fix spelling --- example/ex11-variant01.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/ex11-variant01.c b/example/ex11-variant01.c index 82a9eb40..c21ae3a3 100644 --- a/example/ex11-variant01.c +++ b/example/ex11-variant01.c @@ -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");