From 0670c8dff7af9a90018da89a1d7a2eaeaf213fa8 Mon Sep 17 00:00:00 2001 From: Firas Khalil Khana Date: Sat, 1 May 2021 13:21:54 +0300 Subject: [PATCH] Change "is failed" to "failed" --- 11-if/questions/4-error-handling.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/11-if/questions/4-error-handling.md b/11-if/questions/4-error-handling.md index d27e8b8..11fec99 100644 --- a/11-if/questions/4-error-handling.md +++ b/11-if/questions/4-error-handling.md @@ -61,13 +61,13 @@ func Reset() ## Let's say a function returns a nil error value. So, what does that mean? -1. The function call is failed. +1. The function call failed. 2. The function call is successful. *CORRECT* 3. The function call is in an indeterministic state. We can't know. ## Let's say a function returns a non-nil error value. So, what does that mean? -1. The function call is failed. *CORRECT* +1. The function call failed. *CORRECT* 2. The function call is successful. 3. The function call is in an indeterministic state. We can't know. @@ -141,4 +141,4 @@ func main() { > > **2:** Actually, it does. > -> **3:** No, it does not. It only prints it when there isn't an error. \ No newline at end of file +> **3:** No, it does not. It only prints it when there isn't an error.