aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Gauer <[email protected]>2021-04-26 20:03:31 -0400
committerGitHub <[email protected]>2021-04-26 20:03:31 -0400
commit04127190954e8f8bddb2015b6ae2ccc613209ee5 (patch)
treee4a893caae7ebd05ea397c39eb7b6f8d227b5425
parentdb20e9541a8646107225de61b5b7d1e54d710ab3 (diff)
parent4364ebcf4b0dee9c5a475ac2847d25a5f60e19c7 (diff)
downloadziglings-04127190954e8f8bddb2015b6ae2ccc613209ee5.tar.xz
ziglings-04127190954e8f8bddb2015b6ae2ccc613209ee5.zip
Merge pull request #47 from ChrisMiuchiz/main
Fix typo
-rw-r--r--exercises/048_methods2.zig2
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 {