aboutsummaryrefslogtreecommitdiff
path: root/exercises/047_methods.zig
diff options
context:
space:
mode:
authorDave Gauer <[email protected]>2022-07-31 11:32:51 -0400
committerDave Gauer <[email protected]>2022-07-31 11:32:51 -0400
commitc3c610acf07298eec313ebf1923defdac7b3de67 (patch)
treede833279e471d1136fb7e0cc987df3eaf8e8af89 /exercises/047_methods.zig
parent392a3ca9c617c564e29ff19e5ac97c23de5809d6 (diff)
downloadziglings-c3c610acf07298eec313ebf1923defdac7b3de67.tar.xz
ziglings-c3c610acf07298eec313ebf1923defdac7b3de67.zip
Update ex 047 comment and patch
Diffstat (limited to 'exercises/047_methods.zig')
-rw-r--r--exercises/047_methods.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/047_methods.zig b/exercises/047_methods.zig
index a6367e9..048cfa0 100644
--- a/exercises/047_methods.zig
+++ b/exercises/047_methods.zig
@@ -88,7 +88,7 @@ pub fn main() void {
// Loop through every alien...
for (aliens) |*alien| {
- // *** Zap the Alien Here! ***
+ // *** Zap the alien with the heat ray here! ***
???.zap(???);
// If the alien's health is still above 0, it's still alive.