summaryrefslogtreecommitdiff
path: root/src/cmd/godoc
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2010-03-16 16:45:54 -0700
committerRobert Griesemer <gri@golang.org>2010-03-16 16:45:54 -0700
commit415f42078b59ba05f26ecd34a94a9dee8d6a604c (patch)
tree0f252e0f7443fd1cc8d8101f5b780a26b5f756b9 /src/cmd/godoc
parent9460e8b0f8eb51248726193c2807b9229c4f269f (diff)
downloadgolang-415f42078b59ba05f26ecd34a94a9dee8d6a604c.tar.gz
gofmt: more consistent formatting of const/var decls
- gofmt -w src misc - only manually modified file: src/pkg/go/printer/nodes.go R=rsc CC=golang-dev, r http://codereview.appspot.com/606041
Diffstat (limited to 'src/cmd/godoc')
-rw-r--r--src/cmd/godoc/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/godoc/main.go b/src/cmd/godoc/main.go
index f7dc522f2..f640029b1 100644
--- a/src/cmd/godoc/main.go
+++ b/src/cmd/godoc/main.go
@@ -39,8 +39,8 @@ import (
var (
// periodic sync
- syncCmd = flag.String("sync", "", "sync command; disabled if empty")
- syncMin = flag.Int("sync_minutes", 0, "sync interval in minutes; disabled if <= 0")
+ syncCmd = flag.String("sync", "", "sync command; disabled if empty")
+ syncMin = flag.Int("sync_minutes", 0, "sync interval in minutes; disabled if <= 0")
syncDelay delayTime // actual sync delay in minutes; usually syncDelay == syncMin, but delay may back off exponentially
// server control