aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/048_methods2.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/048_methods2.zig')
-rw-r--r--exercises/048_methods2.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/048_methods2.zig b/exercises/048_methods2.zig
index 3ce6a6c..310867a 100644
--- a/exercises/048_methods2.zig
+++ b/exercises/048_methods2.zig
@@ -34,7 +34,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.
+ // This links the elephants so that each tail "points" to the next.
elephantA.tail = &elephantB;
elephantB.tail = &elephantC;
@@ -52,7 +52,7 @@ fn visitElephants(first_elephant: *Elephant) void {
e.print();
e.visit();
- // Get the next elephant or stop.
+ // This gets the next elephant or stops.
if (e.hasTail()) {
e = e.???; // Which method do we want here?
} else {