Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
b6f294de
Commit
b6f294de
authored
Sep 14, 2010
by
Robert Griesemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
godoc documentation: fixed typo, more precise comment
R=iant CC=golang-dev
https://golang.org/cl/2184042
parent
ec81b125
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
doc.go
src/cmd/godoc/doc.go
+2
-2
godoc.go
src/cmd/godoc/godoc.go
+2
-2
No files found.
src/cmd/godoc/doc.go
View file @
b6f294de
...
...
@@ -62,9 +62,9 @@ The flags are:
-sync_minutes=0
sync interval in minutes; sync is disabled if <= 0
-filter=""
fil
e containing permitted permitted
directory paths
fil
ter file containing permitted package
directory paths
-filter_minutes=0
filter update interval in minutes; update is disabled if <= 0
filter
file
update interval in minutes; update is disabled if <= 0
The -path flag accepts a list of colon-separated paths; unrooted paths are relative
to the current working directory. Each path is considered as an additional root for
...
...
src/cmd/godoc/godoc.go
View file @
b6f294de
...
...
@@ -53,8 +53,8 @@ var (
// file system roots
goroot
=
flag
.
String
(
"goroot"
,
runtime
.
GOROOT
(),
"Go root directory"
)
path
=
flag
.
String
(
"path"
,
""
,
"additional package directories (colon-separated)"
)
filter
=
flag
.
String
(
"filter"
,
"godoc.dirlist"
,
"file containing permitted package directory paths"
)
filterMin
=
flag
.
Int
(
"filter_minutes"
,
0
,
"filter update interval in minutes; disabled if <= 0"
)
filter
=
flag
.
String
(
"filter"
,
"godoc.dirlist"
,
"fil
ter fil
e containing permitted package directory paths"
)
filterMin
=
flag
.
Int
(
"filter_minutes"
,
0
,
"filter
file
update interval in minutes; disabled if <= 0"
)
filterDelay
delayTime
// actual filter update interval in minutes; usually filterDelay == filterMin, but filterDelay may back off exponentially
// layout control
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment