diff options
| author | ChrisMiuchiz <[email protected]> | 2021-04-24 19:33:08 -0400 |
|---|---|---|
| committer | ChrisMiuchiz <[email protected]> | 2021-04-24 19:33:08 -0400 |
| commit | 4364ebcf4b0dee9c5a475ac2847d25a5f60e19c7 (patch) | |
| tree | 000fa1c368e68c25a2b2daab742afaa1cf0f9c0b | |
| parent | 14c7e733432ab9321e50e75cbf9c56af5aed4a6e (diff) | |
| download | ziglings-4364ebcf4b0dee9c5a475ac2847d25a5f60e19c7.tar.xz ziglings-4364ebcf4b0dee9c5a475ac2847d25a5f60e19c7.zip | |
Fix typo
| -rw-r--r-- | exercises/048_methods2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/048_methods2.zig b/exercises/048_methods2.zig index 9fa3d97..3ce6a6c 100644 --- a/exercises/048_methods2.zig +++ b/exercises/048_methods2.zig @@ -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 { |
