diff options
author | Russ Cox <rsc@golang.org> | 2009-11-09 11:45:15 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-11-09 11:45:15 -0800 |
commit | e067f862f1774ab89a2096a88571a94e3b9cd353 (patch) | |
tree | cc60401678ba31d52413cd3d843df2924cfda190 /src/cmd/hgpatch/doc.go | |
parent | 00b339392b1bc99c91cf7aa550bc07eade52c8ff (diff) | |
download | golang-e067f862f1774ab89a2096a88571a94e3b9cd353.tar.gz |
tweak documentation of commands
so that first sentence is better for cmd page.
live at http://r45:3456/cmd/
R=gri, r
http://go/go-review/1024034
Diffstat (limited to 'src/cmd/hgpatch/doc.go')
-rw-r--r-- | src/cmd/hgpatch/doc.go | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/cmd/hgpatch/doc.go b/src/cmd/hgpatch/doc.go index 5d7674acf..a3d069fae 100644 --- a/src/cmd/hgpatch/doc.go +++ b/src/cmd/hgpatch/doc.go @@ -4,11 +4,10 @@ /* -Hgpatch reads a patch, which should have been generated by -a version control system like CVS, GIT, Mercurial, or Subversion, -from a file (or standard input) and applies that patch to the local -Mercurial repository. If successful, it writes a list of affected -files to standard output. +Hgpatch applies a patch to the local Mercurial repository. +The patch should have been been generated by +a version control system like CVS, GIT, Mercurial, or Subversion. +If successful, hgpatch writes a list of affected files to standard output. Hgpatch is meant to be used by the Mercurial codereview extension. |