summaryrefslogtreecommitdiff
path: root/doc/gccgo_install.html
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2011-01-19 23:07:38 -0500
committerRob Pike <r@golang.org>2011-01-19 23:07:38 -0500
commit0e5aaf1aefe584c8d0b42e9f183ceebfeff8d458 (patch)
treef94aa132cdff72008a6c1168e39055a6c792ad0e /doc/gccgo_install.html
parentfaed9b881c31cd36559915e3ea2e2a2c8296130d (diff)
downloadgo-0e5aaf1aefe584c8d0b42e9f183ceebfeff8d458.tar.gz
docs: float->float64 plus a couple of other tweaks.
R=rsc, gri CC=golang-dev http://codereview.appspot.com/3978042 Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'doc/gccgo_install.html')
-rw-r--r--doc/gccgo_install.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/gccgo_install.html b/doc/gccgo_install.html
index 393e57963..2ab6dcdae 100644
--- a/doc/gccgo_install.html
+++ b/doc/gccgo_install.html
@@ -296,8 +296,8 @@ than one value, the C function returns a struct. For example, these
functions have equivalent types:
<pre>
-func GoFunction(int) (int, float)
-struct { int i; float f; } CFunction(int)
+func GoFunction(int) (int, float64)
+struct { int i; float64 f; } CFunction(int)
</pre>
<p>