diff options
author | Andrey Mirtchovski <mirtchovski@gmail.com> | 2010-04-29 14:33:19 +1000 |
---|---|---|
committer | Andrey Mirtchovski <mirtchovski@gmail.com> | 2010-04-29 14:33:19 +1000 |
commit | bf140d5cdd313400bc4d7192fab7ef1667dfdae8 (patch) | |
tree | fb6a3766e3eccabd65ab123ed4e16b263d01b35f /doc | |
parent | 374bd41eff9f007f7c3c7834b9a36aa0a33c311e (diff) | |
download | golang-bf140d5cdd313400bc4d7192fab7ef1667dfdae8.tar.gz |
codelab/index.html: a few typos.
R=adg
CC=golang-dev
http://codereview.appspot.com/993042
Committer: Andrew Gerrand <adg@golang.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/codelab/wiki/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/codelab/wiki/index.html b/doc/codelab/wiki/index.html index 898ea01d1..7a078f0a5 100644 --- a/doc/codelab/wiki/index.html +++ b/doc/codelab/wiki/index.html @@ -180,7 +180,7 @@ func loadPage(title string) (*page, os.Error) { <p> Callers of this function can now check the second parameter; if it is -<code>nil</code> then it has succesfully loaded a page. If not, it will be an +<code>nil</code> then it has successfully loaded a page. If not, it will be an <code>os.Error</code> that can be handled by the caller (see the <a href="http://golang.org/pkg/os/#Error">os package documentation</a> for details). @@ -222,7 +222,7 @@ This is a sample page. <p> (The <code>8g</code> and <code>8l</code> commands are applicable to <code>GOARCH=386</code>. If you're on an <code>amd64</code> system, -subtitute 6's for the 8's.) +substitute 6's for the 8's.) </p> <p> @@ -452,7 +452,7 @@ import ( </pre> <p> -Let's create a template file containg the HTML form. +Let's create a template file containing the HTML form. Open a new file named <code>edit.html</code>, and add the following lines: </p> |