1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-05 01:56:03 +02:00

this means

This commit is contained in:
Roman Frołow 2021-05-13 14:01:54 +02:00 committed by GitHub
parent 469d4dfbf4
commit e17159bcea
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ const Elephant = struct {
// Elephant tail 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 {