From 0d40e40f5ee1996e09018e02833610c34331322c Mon Sep 17 00:00:00 2001 From: Stephen Ma Date: Sat, 14 Aug 2010 10:27:24 +1000 Subject: [PATCH] spec: trivial syntax fix R=golang-dev CC=golang-dev https://golang.org/cl/1982042 --- doc/go_spec.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/go_spec.html b/doc/go_spec.html index 3d4123c438..53b63fa4de 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -4661,7 +4661,7 @@ func IsPrintable(s string) (ok bool) { } // Panicking has stopped; execution will resume normally in caller. // The return value will be true normally, false if a panic occurred. - } + }() panicIfNotPrintable(s) // will panic if validations fails. }