From c3eaef71ab3039921f4cf28bd4abd22aae002922 Mon Sep 17 00:00:00 2001 From: Shenghou Ma Date: Sat, 17 Mar 2012 15:53:40 +0800 Subject: [PATCH] doc/go_faq: minor update R=adg, r CC=golang-dev https://golang.org/cl/5849052 --- doc/go_faq.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/go_faq.html b/doc/go_faq.html index f575410e928..c4f81c7b945 100644 --- a/doc/go_faq.html +++ b/doc/go_faq.html @@ -1317,7 +1317,7 @@ standard GCC back end. Gc is written in C using yacc/bison for the parser. Although it's a new program, it fits in the Plan 9 C compiler suite (http://plan9.bell-labs.com/sys/doc/compiler.html) -and uses a variant of the Plan 9 loader to generate ELF binaries. +and uses a variant of the Plan 9 loader to generate ELF/Mach-O/PE binaries.

@@ -1327,7 +1327,7 @@ especially of open source distribution—you'd need a Go compiler to set up a Go environment. Gccgo, which came later, makes it possible to consider writing a compiler in Go, which might well happen. (Go would be a fine language in which to implement a compiler; a native lexer and -parser are already available in /pkg/go.) +parser are already available in the go package.)