From a9a5b51828132b7f839ef80ac79c1c58ee352766 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Fri, 26 Mar 2021 22:21:53 +0000 Subject: Fix a small typo in 029_errdefer.zig. --- exercises/029_errdefer.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises') diff --git a/exercises/029_errdefer.zig b/exercises/029_errdefer.zig index f43c738..82fdfe1 100644 --- a/exercises/029_errdefer.zig +++ b/exercises/029_errdefer.zig @@ -1,6 +1,6 @@ // // Another common problem is a block of code that could exit in multiple -// places due to an error - but that needs to run do something before it +// places due to an error - but that needs to do something before it // exits (typically to clean up after itself). // // An "errdefer" is a defer that only runs if the block exits with an error: -- cgit v1.2.3-ZIG