From: Stephen Ma Date: Sat, 14 Aug 2010 00:27:24 +0000 (+1000) Subject: spec: trivial syntax fix X-Git-Tag: weekly.2010-08-25~57 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0d40e40f5ee1996e09018e02833610c34331322c;p=gostls13.git spec: trivial syntax fix R=golang-dev CC=golang-dev https://golang.org/cl/1982042 --- 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. }