Skip to content

Commit b3393ff

Browse files
committed
Match unexported function in comment
1 parent ffc2cae commit b3393ff

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

pkg/common/utils.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -402,9 +402,6 @@ func ParseZoneFromURI(zoneURI string) (string, error) {
402402
return zoneMatch[1], nil
403403
}
404404

405-
// StoragePoolZones returns the unique zones of the given storage pool resource names.
406-
// Returns an error if multiple storage pools in 1 zone are found.
407-
408405
func UnorderedSlicesEqual(slice1 []string, slice2 []string) bool {
409406
set1 := sets.NewString(slice1...)
410407
set2 := sets.NewString(slice2...)

pkg/parameters/parameters.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ func ExtractModifyVolumeParameters(parameters map[string]string) (ModifyVolumePa
449449
return modifyVolumeParams, nil
450450
}
451451

452-
// ConvertStringToAvailabilityClass converts a string to an availability class string.
452+
// convertStringToAvailabilityClass converts a string to an availability class string.
453453
func convertStringToAvailabilityClass(str string) (string, error) {
454454
switch strings.ToLower(str) {
455455
case ParameterNoAvailabilityClass:

0 commit comments

Comments
 (0)