aboutsummaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2022-07-31 11:32:51 -0400
committerDave Gauer <dave@ratfactor.com>2022-07-31 11:32:51 -0400
commitae78706f45b618a71fea2d73130b0aadb8bbd910 (patch)
treede833279e471d1136fb7e0cc987df3eaf8e8af89 /exercises
parentcf0fa9b9a0bdca658cc15624903fae884cefe947 (diff)
downloadziglings-ae78706f45b618a71fea2d73130b0aadb8bbd910.tar.gz
ziglings-ae78706f45b618a71fea2d73130b0aadb8bbd910.tar.bz2
ziglings-ae78706f45b618a71fea2d73130b0aadb8bbd910.tar.xz
ziglings-ae78706f45b618a71fea2d73130b0aadb8bbd910.zip
Update ex 047 comment and patch
Diffstat (limited to 'exercises')
-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.