This commit is contained in:
Adam Millerchip 2021-12-31 00:02:15 +09:00
parent b72e49c686
commit c00afe039c
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ fn visitElephants(first_elephant: *Elephant) void {
// This gets the next elephant or stops.
if (e.hasTail()) {
e = e.???; // Which method do we want here?
e = e.getTail(); // Which method do we want here?
} else {
break;
}