aboutsummaryrefslogtreecommitdiff
path: root/content/defer-panic-and-recover.article
diff options
context:
space:
mode:
authorMihai Borobocea <MihaiBorobocea@gmail.com>2015-11-01 16:14:25 +0200
committerMinux Ma <minux@golang.org>2015-11-03 20:18:37 +0000
commitae8412ecaca546a66b3a3d5f4844a898aa9605ec (patch)
tree0e017aae35c824bd3f0d3a754efd8ac9f8280d4e /content/defer-panic-and-recover.article
parent79041e95580188957ec65fdbbf4b3a8b81f95fda (diff)
content: fix double-underscore typo in defer-panic-recover article
The typo produces an underscore “[…]order after_the surrounding[…]” at http://blog.golang.org/defer-panic-and-recover Change-Id: I0ab9be9cbef772c3ebff684e7de96fc4c2c802c6 Reviewed-on: https://go-review.googlesource.com/16477 Reviewed-by: Minux Ma <minux@golang.org>
Diffstat (limited to 'content/defer-panic-and-recover.article')
-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":