diff options
| author | Dave Gauer <[email protected]> | 2021-03-26 18:23:26 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-26 18:23:26 -0400 |
| commit | a817b3e6c129637655fe1d5b68a85fb7e9469815 (patch) | |
| tree | 05c12fefab20c6c5ad1a2546e2d4f1c66e2a7b8f | |
| parent | 0ee4750b746a2ba91d66bfed353be2486c5e34ef (diff) | |
| parent | 8f1344cbad6b05933d93041523dc579810ed5705 (diff) | |
| download | ziglings-a817b3e6c129637655fe1d5b68a85fb7e9469815.tar.xz ziglings-a817b3e6c129637655fe1d5b68a85fb7e9469815.zip | |
Merge pull request #40 from samwho/fix-typo
Fix a small typo in 029_errdefer.zig.
| -rw-r--r-- | exercises/029_errdefer.zig | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
