summaryrefslogtreecommitdiff
path: root/doc/gccgo_install.html
diff options
context:
space:
mode:
authorJeremy Jackins <jeremyjackins@gmail.com>2012-03-19 08:26:36 +1100
committerJeremy Jackins <jeremyjackins@gmail.com>2012-03-19 08:26:36 +1100
commit230747a83359a46b534aece8affd46de477c7c84 (patch)
treedddcce36e1d06a990f7d2f41851a0fc258e02f01 /doc/gccgo_install.html
parenta7e47b507f37abe87a5f1aa5bbabc1a7604388ae (diff)
downloadgo-230747a83359a46b534aece8affd46de477c7c84.tar.gz
doc: various typos, remove apostrophes from ordinals
R=golang-dev, r, r CC=golang-dev http://codereview.appspot.com/5845059 Committer: Rob Pike <r@golang.org>
Diffstat (limited to 'doc/gccgo_install.html')
-rw-r--r--doc/gccgo_install.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/gccgo_install.html b/doc/gccgo_install.html
index ae359437a..e769c2211 100644
--- a/doc/gccgo_install.html
+++ b/doc/gccgo_install.html
@@ -342,7 +342,7 @@ func c_open(name *byte, mode int, perm int) int __asm__ ("open");
</pre>
<p>
-The C function naturally expects a nul terminated string, which in
+The C function naturally expects a NUL-terminated string, which in
Go is equivalent to a pointer to an array (not a slice!) of
<code>byte</code> with a terminating zero byte. So a sample call
from Go would look like (after importing the <code>os</code> package):