summaryrefslogtreecommitdiff
path: root/src/cmd/godoc
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2010-02-25 16:07:55 -0800
committerRobert Griesemer <gri@golang.org>2010-02-25 16:07:55 -0800
commitaf6c4633cbd51c9b7794a160d420c536957b503b (patch)
tree3b5ac0987f88c4873a5af4cb48ae78a6d5ca77a8 /src/cmd/godoc
parent454796815f7f2e0e614b999f9cc1ef0e3e093b78 (diff)
downloadgolang-af6c4633cbd51c9b7794a160d420c536957b503b.tar.gz
go/printer, gofmt: align comments in multi-line expression lists
- gofmt -w src misc - improves several lists and fixes minor degradation introduced with the fix for issue 628 - removed some dead code (stringList) R=rsc CC=golang-dev http://codereview.appspot.com/223058
Diffstat (limited to 'src/cmd/godoc')
-rw-r--r--src/cmd/godoc/godoc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/godoc/godoc.go b/src/cmd/godoc/godoc.go
index 29792d58f..c6438245e 100644
--- a/src/cmd/godoc/godoc.go
+++ b/src/cmd/godoc/godoc.go
@@ -935,7 +935,7 @@ func redirect(c *http.Conn, r *http.Request) (redirected bool) {
// textExt[x] is true if the extension x indicates a text file, and false otherwise.
var textExt = map[string]bool{
".css": false, // must be served raw
- ".js": false, // must be served raw
+ ".js": false, // must be served raw
}