Delta Between Two Patch Sets: src/cmd/go/mkdoc.sh
Issue 189760043 :
[release-branch.go1.4] code review 189760043: cmd/go: document import path checking (Closed)
Left Patch Set: diff -r b5c6a4abeb4cdb46c7c5824ffb14fa1697a0b82d https://code.google.com/p/go/
Right Patch Set: diff -r b5c6a4abeb4cdb46c7c5824ffb14fa1697a0b82d https://code.google.com/p/go/
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/cmd/go/doc.go
src/cmd/go/help.go
src/cmd/go/mkdoc.sh
LEFT RIGHT
(no file at all) 1 #!/bin/sh 1 #!/bin/sh
2 # Copyright 2012 The Go Authors. All rights reserved. 2 # Copyright 2012 The Go Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style 3 # Use of this source code is governed by a BSD-style
4 # license that can be found in the LICENSE file. 4 # license that can be found in the LICENSE file.
5 5
6 go install # So the next line will produce updated documentation. 6 go install # So the next line will produce updated documentation.
7 go help documentation > doc.go 7 go help documentation | sed 's; \*/; * /;' >doc.go
8 gofmt -w doc.go 8 gofmt -w doc.go
9 9
LEFT RIGHT