Merge pull request #47 from ChrisMiuchiz/main

Fix typo
This commit is contained in:
Dave Gauer 2021-04-26 20:03:31 -04:00 committed by GitHub
commit a479e4cb06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {