summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--exercises/092_interfaces.zig2
-rw-r--r--patches/patches/092_interfaces.patch7
2 files changed, 5 insertions, 4 deletions
diff --git a/exercises/092_interfaces.zig b/exercises/092_interfaces.zig
index 45f9d8e..5adc9c0 100644
--- a/exercises/092_interfaces.zig
+++ b/exercises/092_interfaces.zig
@@ -51,7 +51,7 @@ pub fn main() !void {
} };
// The daily situation report, what's going on in the garden
- try dailyReport(&my_insects);
+ try dailyReport("what is here the right parameter?");
}
// Through the interface we can keep a list of various objects
diff --git a/patches/patches/092_interfaces.patch b/patches/patches/092_interfaces.patch
index ce3141f..67fc443 100644
--- a/patches/patches/092_interfaces.patch
+++ b/patches/patches/092_interfaces.patch
@@ -1,3 +1,4 @@
-68a69,70
-> //
-> // just an empty patch
+54c54
+< try dailyReport("what is here the right parameter?");
+---
+> try dailyReport(&my_insects);