From 4caddfa68c06386a7e2a3370658f5f193ed9bc17 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sat, 10 Oct 2015 16:22:29 -0700 Subject: [PATCH] go/vcs: fix doc typos Change-Id: Ife1f9534d08d3bd9beeb4e6e798733d71e6f72b5 Reviewed-on: https://go-review.googlesource.com/15750 Reviewed-by: Dmitri Shuralyov Reviewed-by: Brad Fitzpatrick --- go/vcs/vcs.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/go/vcs/vcs.go b/go/vcs/vcs.go index 2d9b7de3..c1d0ecd0 100644 --- a/go/vcs/vcs.go +++ b/go/vcs/vcs.go @@ -369,11 +369,11 @@ func FromDir(dir, srcRoot string) (vcs *Cmd, root string, err error) { type RepoRoot struct { VCS *Cmd - // repo is the repository URL, including scheme + // Repo is the repository URL, including scheme. Repo string - // root is the import path corresponding to the root of the - // repository + // Root is the import path corresponding to the root of the + // repository. Root string }