This commit is contained in:
ChrisMiuchiz 2021-04-24 19:33:08 -04:00
parent 2f0f823a73
commit a8a11ac0bb
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const Elephant = struct {
// New Elephant methods!
pub fn getTail(self: *Elephant) *Elephant {
return self.tail.?; // Remember, this is means "orelse unreachable"
return self.tail.?; // Remember, this means "orelse unreachable"
}
pub fn hasTail(self: *Elephant) bool {