Update 033_iferror.zig

This commit is contained in:
Dave Gauer 2021-08-28 10:55:34 -04:00 committed by GitHub
parent 116b355210
commit 84c9c4072c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
// //
// Let's revisit the very first error exercise. This time, we're going to // Let's revisit the very first error exercise. This time, we're going to
// look at a special error-handling type of the "if" statement. // look at an error-handling variation of the "if" statement.
// //
// if (foo) |value| { // if (foo) |value| {
// //