diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-05-13 11:22:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-13 11:22:24 -0400 |
commit | edd6bf6f8e926b61c2889ad24696b46e72c58a65 (patch) | |
tree | 2ca4c80de8eaa10abfe0dd70401d2f4936656d75 | |
parent | 469d4dfbf40dd5512f53ce1cb022e1aa4639443b (diff) | |
parent | e17159bceadaf54a4eba899973bddcd093ada3ed (diff) | |
download | ziglings-edd6bf6f8e926b61c2889ad24696b46e72c58a65.tar.gz ziglings-edd6bf6f8e926b61c2889ad24696b46e72c58a65.tar.bz2 ziglings-edd6bf6f8e926b61c2889ad24696b46e72c58a65.tar.xz ziglings-edd6bf6f8e926b61c2889ad24696b46e72c58a65.zip |
Merge pull request #55 from rofrol/patch-3
this means
-rw-r--r-- | exercises/049_quiz6.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/049_quiz6.zig b/exercises/049_quiz6.zig index b01a091..92541a5 100644 --- a/exercises/049_quiz6.zig +++ b/exercises/049_quiz6.zig @@ -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 { |