aboutsummaryrefslogtreecommitdiff
path: root/gcc/go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2021-05-27 15:32:28 -0700
committerIan Lance Taylor <iant@golang.org>2021-05-27 15:33:57 -0700
commit4774807e6e535597676473051aa00aabac075327 (patch)
tree1d6425a9ef7f4d1bd903eff2afa8c03801768c00 /gcc/go
parentc33ec196aa713c62d73907dc8f9e57d7ab2e4e4b (diff)
downloadgcc-4774807e6e535597676473051aa00aabac075327.zip
gcc-4774807e6e535597676473051aa00aabac075327.tar.gz
gcc-4774807e6e535597676473051aa00aabac075327.tar.bz2
gccgo.texi: remove HTML quoting
* gccgo.texi (Function Names): Don't HTML quote ampersand.
Diffstat (limited to 'gcc/go')
-rw-r--r--gcc/go/gccgo.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/go/gccgo.texi b/gcc/go/gccgo.texi
index ce6b518..fa0e488 100644
--- a/gcc/go/gccgo.texi
+++ b/gcc/go/gccgo.texi
@@ -495,7 +495,7 @@ like (after importing the @code{os} package):
@smallexample
var name = [4]byte@{'f', 'o', 'o', 0@};
-i := c_open(&amp;name[0], os.O_RDONLY, 0);
+i := c_open(&name[0], os.O_RDONLY, 0);
@end smallexample
Note that this serves as an example only. To open a file in Go please