]> Cypherpunks repositories - gostls13.git/commit
cmd/go: remove invalid space in import comment docs
authorDmitri Shuralyov <shurcooL@gmail.com>
Fri, 10 Jun 2016 08:38:43 +0000 (01:38 -0700)
committerIan Lance Taylor <iant@golang.org>
Sun, 12 Jun 2016 04:13:07 +0000 (04:13 +0000)
commit2ba3d5fc9661846cc3ef66ffc2b8bf2f91909d73
tree2c2eb7ff13e7dd0b61e536462cbaaa5f1caaef65
parentc83e6f50d983d81166d21736ff9ab0ad2182f0fa
cmd/go: remove invalid space in import comment docs

Generate package comment in alldocs.go using line comments rather than
general comments. This scales better, general comments cannot contain the
"*/" character sequence. Line comments do not have any restrictions on
the comment text that can be contained.

Remove the dependency on sed, which is not cross-platform, not go-gettable
external command.

Remove trailing whitespace from usage string in test.go. It's unnecessary.

Fixes #16030.

Change-Id: I3c0bc9955e7c7603c3d1fb4878218b0719d02e04
Reviewed-on: https://go-review.googlesource.com/23968
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
src/cmd/go/alldocs.go
src/cmd/go/main.go
src/cmd/go/mkalldocs.sh
src/cmd/go/test.go