summaryrefslogtreecommitdiffstatshomepage
path: root/exercises/049_quiz6.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-04-27 15:16:38 -0400
committerDave Gauer <dave@ratfactor.com>2021-04-27 15:16:38 -0400
commitf3cf67cd65816a81bea5c44f59761a8a3945b7eb (patch)
treeb41538a1bfd3b6ce1db5eb13895da7cc85bf260e /exercises/049_quiz6.zig
parent9f71d3711e2488df83bd3253381ebc203d7421ec (diff)
Clarify 048,049 comments from instructions (issue #48)
Diffstat (limited to 'exercises/049_quiz6.zig')
-rw-r--r--exercises/049_quiz6.zig10
1 files changed, 5 insertions, 5 deletions
diff --git a/exercises/049_quiz6.zig b/exercises/049_quiz6.zig
index a1a1dec..b01a091 100644
--- a/exercises/049_quiz6.zig
+++ b/exercises/049_quiz6.zig
@@ -47,7 +47,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.
+ // We link the elephants so that each tail "points" to the next.
elephantA.tail = &elephantB;
elephantB.tail = &elephantC;
@@ -64,12 +64,12 @@ pub fn main() void {
fn visitElephants(first_elephant: *Elephant) void {
var e = first_elephant;
- // Follow the tails!
+ // We follow the tails!
while (true) {
e.print();
e.visit();
- // Get the next elephant or stop.
+ // This gets the next elephant or stops.
if (e.hasTail()) {
e = e.getTail();
} else {
@@ -77,11 +77,11 @@ fn visitElephants(first_elephant: *Elephant) void {
}
}
- // Follow the trunks!
+ // We follow the trunks!
while (true) {
e.print();
- // Get the previous elephant or stop.
+ // This gets the previous elephant or stops.
if (e.hasTrunk()) {
e = e.getTrunk();
} else {