Skip to content

Commit 243f7b9

Browse files
authored
fix inaccurate comments (#216)
Corrects inaccurate comments.
1 parent 9085b15 commit 243f7b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/sync.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ func getGroupOperations(awsGroups []*interfaces.Group, googleGroups []*admin.Gro
847847
googleMap[gGroup.Name] = struct{}{}
848848
}
849849

850-
// AWS Groups found and not found in google
850+
// Google Groups found and not found in AWS
851851
for _, gGroup := range googleGroups {
852852
if _, found := awsMap[gGroup.Name]; found {
853853
log.WithField("gGroup", gGroup).Debug("equals")
@@ -858,7 +858,7 @@ func getGroupOperations(awsGroups []*interfaces.Group, googleGroups []*admin.Gro
858858
}
859859
}
860860

861-
// Google Groups founds and not in aws
861+
// AWS Groups not found in Google
862862
for _, awsGroup := range awsGroups {
863863
if _, found := googleMap[awsGroup.DisplayName]; !found {
864864
log.WithField("awsGroup", awsGroup).Debug("delete")

0 commit comments

Comments
 (0)