mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-01-13 10:16:30 +00:00
Fix typo
This commit is contained in:
parent
14c7e73343
commit
4364ebcf4b
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue