From b2b29814bfbe9c94517d0375cfd2ebe915578294 Mon Sep 17 00:00:00 2001 From: Andrey Mirtchovski Date: Mon, 7 Feb 2011 11:51:17 -0800 Subject: [PATCH] Codelab/wiki: fix typo Missing closing bracket renders the next code snippet unreadable. R=adg, gri CC=golang-dev https://golang.org/cl/4119060 --- doc/codelab/wiki/index.html | 2 +- doc/codelab/wiki/wiki.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/codelab/wiki/index.html b/doc/codelab/wiki/index.html index ee7af33442a..e29106a6e52 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 3ddbd96b775..7ef97b45ba8 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