From: Andrey Mirtchovski Date: Mon, 7 Feb 2011 19:51:17 +0000 (-0800) Subject: Codelab/wiki: fix typo X-Git-Tag: weekly.2011-02-15~80 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b2b29814bfbe9c94517d0375cfd2ebe915578294;p=gostls13.git Codelab/wiki: fix typo Missing closing bracket renders the next code snippet unreadable. R=adg, gri CC=golang-dev https://golang.org/cl/4119060 --- diff --git a/doc/codelab/wiki/index.html b/doc/codelab/wiki/index.html index ee7af33442..e29106a6e5 100644 --- a/doc/codelab/wiki/index.html +++ b/doc/codelab/wiki/index.html @@ -710,7 +710,7 @@ Then we create an init function, which will be called before ParseFile that does not return an error code; instead, it panics if an error is encountered. A panic is appropriate here; if the templates can't be loaded the only sensible thing to do is exit the program. -

 func init() {
diff --git a/doc/codelab/wiki/wiki.html b/doc/codelab/wiki/wiki.html
index 3ddbd96b77..7ef97b45ba 100644
--- a/doc/codelab/wiki/wiki.html
+++ b/doc/codelab/wiki/wiki.html
@@ -574,7 +574,7 @@ Then we create an init function, which will be called before
 ParseFile that does not return an error code; instead, it panics
 if an error is encountered. A panic is appropriate here; if the templates can't
 be loaded the only sensible thing to do is exit the program.
-

 !./srcextract.bin -src=final.go -name=init