1
0
mirror of https://github.com/golang/go synced 2024-11-12 10:30:23 -07:00

don't show semicolons anymore with godoc

R=rsc
https://golang.org/cl/174078
This commit is contained in:
Robert Griesemer 2009-12-14 09:14:00 -08:00
parent 6112e809d2
commit 8793f622e6

View File

@ -458,7 +458,7 @@ func (s *Styler) Token(tok token.Token) (text []byte, tag printer.HTMLTag) {
// Write an AST-node to w; optionally html-escaped.
func writeNode(w io.Writer, node interface{}, html bool, styler printer.Styler) {
mode := printer.UseSpaces;
mode := printer.UseSpaces | printer.NoSemis;
if html {
mode |= printer.GenHTML
}