From beaa89fdf570b58c25f33f72715f6fa8ca2cd8a5 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Tue, 14 Feb 2023 12:58:12 +0100 Subject: [PATCH] inserted a failure and created a patch --- exercises/092_interfaces.zig | 2 +- patches/patches/092_interfaces.patch | 7 ++++--- 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);