go/vcs: fix doc typos

Change-Id: Ife1f9534d08d3bd9beeb4e6e798733d71e6f72b5
Reviewed-on: https://go-review.googlesource.com/15750
Reviewed-by: Dmitri Shuralyov <shurcool@gmail.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Brad Fitzpatrick 2015-10-10 16:22:29 -07:00
parent fe3445e822
commit 4caddfa68c
1 changed files with 3 additions and 3 deletions

View File

@ -369,11 +369,11 @@ func FromDir(dir, srcRoot string) (vcs *Cmd, root string, err error) {
type RepoRoot struct { type RepoRoot struct {
VCS *Cmd VCS *Cmd
// repo is the repository URL, including scheme // Repo is the repository URL, including scheme.
Repo string Repo string
// root is the import path corresponding to the root of the // Root is the import path corresponding to the root of the
// repository // repository.
Root string Root string
} }