1
0
mirror of https://github.com/golang/go synced 2024-11-19 13:04:45 -07:00

cmd/go/internal/load: fix IsMetaPackage function name in doc

The IsMetaPackage function was made exported when it was moved from
cmd/go to cmd/go/internal/load in CL 36196. Its documentation wasn't
updated accordingly. This change fixes that, resolving a golint issue.

Updates #18653.

Change-Id: Icf89461000754d0f09e6617b11c838e4c050d5a6
Reviewed-on: https://go-review.googlesource.com/59430
Reviewed-by: Dave Cheney <dave@cheney.net>
This commit is contained in:
Dmitri Shuralyov 2017-08-27 23:17:12 -04:00 committed by Dave Cheney
parent 6eef2bb5ee
commit 2abef5976a

View File

@ -332,7 +332,7 @@ func ImportPathsNoDotExpansion(args []string) []string {
return out
}
// isMetaPackage checks if name is a reserved package name that expands to multiple packages.
// IsMetaPackage checks if name is a reserved package name that expands to multiple packages.
func IsMetaPackage(name string) bool {
return name == "std" || name == "cmd" || name == "all"
}