From 4d796a1bf95cc54608ffff7b4b24e2843fce94a6 Mon Sep 17 00:00:00 2001 From: psoukie Date: Sat, 18 May 2024 15:17:41 -0700 Subject: [PATCH] fix: clarify comment in 046_optionals2 --- exercises/046_optionals2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/046_optionals2.zig b/exercises/046_optionals2.zig index e745d29..5c7470a 100644 --- a/exercises/046_optionals2.zig +++ b/exercises/046_optionals2.zig @@ -30,7 +30,7 @@ pub fn main() void { var elephantB = Elephant{ .letter = 'B' }; var elephantC = Elephant{ .letter = 'C' }; - // Link the elephants so that each tail "points" to the next. + // The tail of the last elephant is left "pointing" to nothing. elephantA.tail = &elephantB; elephantB.tail = &elephantC;