From: Robert Griesemer Date: Wed, 2 Feb 2011 19:02:56 +0000 (-0800) Subject: Effective Go: fix typo X-Git-Tag: weekly.2011-02-15~133 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=bd4e49f524bc0e5b033850cbaa923527f7b80af7;p=gostls13.git Effective Go: fix typo Fixes #1467. R=r, r2 CC=golang-dev https://golang.org/cl/3981054 --- diff --git a/doc/effective_go.html b/doc/effective_go.html index 3f6f89b8bc..9ca5e7eb3b 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -2705,7 +2705,7 @@ func init() {

When panic is called, including implicitly for run-time -errors such indexing an array out of bounds or failing a type +errors such as indexing an array out of bounds or failing a type assertion, it immediately stops execution of the current function and begins unwinding the stack of the goroutine, running any deferred functions along the way. If that unwinding reaches the top of the