aboutsummaryrefslogtreecommitdiff
path: root/exercises/047_methods.zig
diff options
context:
space:
mode:
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 0e7bfa8..67000ba 100644
--- a/exercises/047_methods.zig
+++ b/exercises/047_methods.zig
@@ -89,7 +89,7 @@ pub fn main() void {
for (aliens) |*alien| {
// *** Zap the alien with the heat ray here! ***
- ???.zap(???);
+ heat_ray.zap(alien);
// If the alien's health is still above 0, it's still alive.
if (alien.health > 0) aliens_alive += 1;