aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/defer-panic-and-recover.article2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/defer-panic-and-recover.article b/content/defer-panic-and-recover.article
index 8e10c90..f43383a 100644
--- a/content/defer-panic-and-recover.article
+++ b/content/defer-panic-and-recover.article
@@ -67,7 +67,7 @@ In this example, the expression "i" is evaluated when the Println call is deferr
return
}
-2. _Deferred_function_calls_are_executed_in_Last_In_First_Out_order_after__the_surrounding_function_returns._
+2. _Deferred_function_calls_are_executed_in_Last_In_First_Out_order_after_the_surrounding_function_returns._
This function prints "3210":