Commit b2b29814 authored by Andrey Mirtchovski's avatar Andrey Mirtchovski Committed by Robert Griesemer

Codelab/wiki: fix typo

Missing closing bracket renders the next code snippet unreadable.

R=adg, gri
CC=golang-dev
https://golang.org/cl/4119060
parent 61c93cac
...@@ -710,7 +710,7 @@ Then we create an <code>init</code> function, which will be called before ...@@ -710,7 +710,7 @@ Then we create an <code>init</code> function, which will be called before
<code>ParseFile</code> that does not return an error code; instead, it panics <code>ParseFile</code> 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 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. be loaded the only sensible thing to do is exit the program.
</p </p>
<pre> <pre>
func init() { func init() {
......
...@@ -574,7 +574,7 @@ Then we create an <code>init</code> function, which will be called before ...@@ -574,7 +574,7 @@ Then we create an <code>init</code> function, which will be called before
<code>ParseFile</code> that does not return an error code; instead, it panics <code>ParseFile</code> 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 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. be loaded the only sensible thing to do is exit the program.
</p </p>
<pre> <pre>
!./srcextract.bin -src=final.go -name=init !./srcextract.bin -src=final.go -name=init
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment