Skip to content

Commit

Permalink
chore: fix some comments (#4973)
Browse files Browse the repository at this point in the history
Signed-off-by: zhedazijingang <123@before.tech>
  • Loading branch information
zhedazijingang authored Sep 9, 2024
1 parent 0afafb8 commit 24cfac0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/chaincode/platforms/golang/platform.go
Original file line number Diff line number Diff line change
Expand Up @@ -482,13 +482,13 @@ func validateMetadata(name, path string) error {
}

// dist holds go "distribution" information. The full list of distributions can
// be obtained with `go tool dist list.
// be obtained with `go tool dist list`.
type dist struct{ goos, goarch string }

// distributions returns the list of OS and ARCH combinations that we calcluate
// distributions returns the list of OS and ARCH combinations that we calculate
// deps for.
func distributions() []dist {
// pre-populate linux architecutures
// pre-populate linux architectures
dists := map[dist]bool{
{goos: "linux", goarch: "amd64"}: true,
}
Expand Down

0 comments on commit 24cfac0

Please sign in to comment.