aboutsummaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-04-26 20:03:31 -0400
committerGitHub <noreply@github.com>2021-04-26 20:03:31 -0400
commita479e4cb065d3084b27fc748f6ebe108762edaa0 (patch)
treee4a893caae7ebd05ea397c39eb7b6f8d227b5425 /exercises
parentcae0fbe0b2ae1d24769d322e4a2b6c46ca3d97d7 (diff)
parenta8a11ac0bbd1cab43cbe2a8df3902c3a9a83cb2e (diff)
downloadziglings-a479e4cb065d3084b27fc748f6ebe108762edaa0.tar.gz
ziglings-a479e4cb065d3084b27fc748f6ebe108762edaa0.tar.bz2
ziglings-a479e4cb065d3084b27fc748f6ebe108762edaa0.tar.xz
ziglings-a479e4cb065d3084b27fc748f6ebe108762edaa0.zip
Merge pull request #47 from ChrisMiuchiz/main
Fix typo
Diffstat (limited to 'exercises')
-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 {