From bd4e49f524bc0e5b033850cbaa923527f7b80af7 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Wed, 2 Feb 2011 11:02:56 -0800 Subject: [PATCH] Effective Go: fix typo Fixes #1467. R=r, r2 CC=golang-dev https://golang.org/cl/3981054 --- doc/effective_go.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0