aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-02-14 12:58:12 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2023-02-14 12:58:12 +0100
commitbeaa89fdf570b58c25f33f72715f6fa8ca2cd8a5 (patch)
treeb8ede3f8d86287c23867f13c70f111f0a7bbbe12
parentbb4b321b0c848a5262d7bd75d70912528be74b0a (diff)
inserted a failure and created a patch
-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);