Skip to content

Commit 8dd80d0

Browse files
authored
go/vcs: improve package comment wording
Remove "(like Mercurial, Git, or Subversion)". Replace "consistent with" -> "similar to". Replace "done" -> "made". Replace comma with semicolon.
1 parent 8a95802 commit 8dd80d0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

go/vcs/vcs.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@
33
// license that can be found in the LICENSE file.
44

55
// Package vcs exposes functions for resolving import paths
6-
// and using version control systems (like Mercurial, Git, or Subversion),
7-
// which can be used to implement behavior consistent with
8-
// the standard "go get" command.
6+
// and using version control systems, which can be used to
7+
// implement behavior similar to the standard "go get" command.
98
//
109
// This package is a copy of internal code in package cmd/go/internal/get,
1110
// modified to make the identifiers exported. It's provided here
1211
// for developers who want to write tools with similar semantics.
1312
// It needs to be manually kept in sync with upstream when changes are
14-
// done to cmd/go/internal/get, see https://golang.org/issues/11490.
13+
// made to cmd/go/internal/get; see https://golang.org/issues/11490.
1514
//
1615
package vcs // import "golang.org/x/tools/go/vcs"
1716

0 commit comments

Comments
 (0)