Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: make function comment match function name #7945

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions balancer/pkg/policy/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ type PlacementProblems struct {
OverflowReplicas int32
}

// buildTargetInfoMap aggregates information scattered across multiple
// buildTargetInfoMapForProportional aggregates information scattered across multiple
// maps into a single one. It assumes that all inputs are already validated
// and consistent.
func buildTargetInfoMapForProportional(
Expand Down Expand Up @@ -91,7 +91,7 @@ func buildTargetInfoMapForProportional(
return result
}

// buildTargetInfoMap aggregates information scattered across multiple
// buildTargetInfoMapForPriority aggregates information scattered across multiple
// maps into a single one. It assumes that all inputs are already validated
// and consistent.
func buildTargetInfoMapForPriority(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (p *SharedCredentialsProvider) IsExpired() bool {
return !p.retrieved
}

// loadProfiles loads from the file pointed to by shared credentials filename for profile.
// loadProfile loads from the file pointed to by shared credentials filename for profile.
// The credentials retrieved from the profile will be returned or error. Error will be
// returned if it fails to read from the file, or the data is invalid.
func loadProfile(filename, profile string) (Value, error) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func (p *SharedCredentialsProvider) IsExpired() bool {
return !p.retrieved
}

// loadProfiles loads from the file pointed to by shared credentials filename for profile.
// loadProfile loads from the file pointed to by shared credentials filename for profile.
// The credentials retrieved from the profile will be returned or error. Error will be
// returned if it fails to read from the file, or the data is invalid.
func loadProfile(filename, profile string) (Value, error) {
Expand Down
Loading