diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-04-27 15:16:38 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-04-27 15:16:38 -0400 |
commit | 1bedf452946a4efb74ab83060aa534fc37f11803 (patch) | |
tree | b41538a1bfd3b6ce1db5eb13895da7cc85bf260e /exercises/048_methods2.zig | |
parent | 05cefbfd17db399ca152bc82fee1d2f2993cfe65 (diff) | |
download | ziglings-1bedf452946a4efb74ab83060aa534fc37f11803.tar.gz ziglings-1bedf452946a4efb74ab83060aa534fc37f11803.tar.bz2 ziglings-1bedf452946a4efb74ab83060aa534fc37f11803.tar.xz ziglings-1bedf452946a4efb74ab83060aa534fc37f11803.zip |
Clarify 048,049 comments from instructions (issue #48)
Diffstat (limited to 'exercises/048_methods2.zig')
-rw-r--r-- | exercises/048_methods2.zig | 4 |
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 { |