diff options
author | Agniva De Sarker <agnivade@yahoo.co.in> | 2018-04-14 00:23:09 +0530 |
---|---|---|
committer | Andrew Bonventre <andybons@golang.org> | 2018-04-13 19:50:50 +0000 |
commit | 7edc962a942e4a9d5e06dde79299f7fc5605f000 (patch) | |
tree | d05d3cbb132e60ace21a28184833cc4b31ef59c3 /content/defer-panic-and-recover.article | |
parent | efc7460c787535c46feadda9f7c395f16a615306 (diff) |
content: update all golang.org links to https
Ran sed -i 's/\[\[http:\/\/golang.org/\[\[https:\/\/golang.org/g' *.article
Change-Id: I88acc5104e1a3fc5e9a1cf11b600b657202d8997
Reviewed-on: https://go-review.googlesource.com/106955
Run-TryBot: Andrew Bonventre <andybons@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Andrew Bonventre <andybons@golang.org>
Diffstat (limited to 'content/defer-panic-and-recover.article')
-rw-r--r-- | content/defer-panic-and-recover.article | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/defer-panic-and-recover.article b/content/defer-panic-and-recover.article index f43383a..6a05f7c 100644 --- a/content/defer-panic-and-recover.article +++ b/content/defer-panic-and-recover.article @@ -171,7 +171,7 @@ If we remove the deferred function from f the panic is not recovered and reaches -For a real-world example of *panic* and *recover*, see the [[http://golang.org/pkg/encoding/json/][json package]] from the Go standard library. It decodes JSON-encoded data with a set of recursive functions. When malformed JSON is encountered, the parser calls panic to unwind the stack to the top-level function call, which recovers from the panic and returns an appropriate error value (see the 'error' and 'unmarshal' methods of the decodeState type in [[http://golang.org/src/pkg/encoding/json/decode.go][decode.go]]). +For a real-world example of *panic* and *recover*, see the [[https://golang.org/pkg/encoding/json/][json package]] from the Go standard library. It decodes JSON-encoded data with a set of recursive functions. When malformed JSON is encountered, the parser calls panic to unwind the stack to the top-level function call, which recovers from the panic and returns an appropriate error value (see the 'error' and 'unmarshal' methods of the decodeState type in [[https://golang.org/src/pkg/encoding/json/decode.go][decode.go]]). The convention in the Go libraries is that even when a package uses panic internally, its external API still presents explicit error return values. |