From 3baf0ae657a80e8a63e96924560a3908b6ea6a9d Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sun, 11 Aug 2024 18:23:48 +0200 Subject: [PATCH] Simplified de-referencing for clarification --- 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 a5436d9..86654f7 100644 --- a/exercises/046_optionals2.zig +++ b/exercises/046_optionals2.zig @@ -48,7 +48,7 @@ pub fn main() void { // If e1 and e2 are valid pointers to elephants, // this function links the elephants so that e1's tail "points" to e2. fn linkElephants(e1: ?*Elephant, e2: ?*Elephant) void { - e1.?.*.tail = e2.?; + e1.?.tail = e2; } // This function visits all elephants once, starting with the