diff mbox series

Go patch committed: Don't quote ampersand in gccgo.texi

Message ID CAOyqgcV_fjiSj-J49PVLhhQ_F4Kx8MmorxEznzyTK0hp0JSoOA@mail.gmail.com
State New
Headers show
Series Go patch committed: Don't quote ampersand in gccgo.texi | expand

Commit Message

Ian Lance Taylor May 27, 2021, 10:34 p.m. UTC
This patch removes HTML quoting from the Texinfo file gccgo.html.
Committed to mainline.

Ian
diff mbox series

Patch

diff --git a/gcc/go/gccgo.texi b/gcc/go/gccgo.texi
index ce6b518bb7b..fa0e4882403 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(&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