Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Henrique Santos committed Feb 8, 2024
1 parent e9b4c29 commit 8d0e43f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/pkg/services/mongodbflex/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func AvailableInstanceTypes() []string {
i++
}
// Dict keys aren't iterated in a consistent order
// So we sort the map to make the output consistent
// So we sort the array to make the output consistent
slices.Sort(instanceTypes)
return instanceTypes
}
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/services/postgresflex/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func AvailableInstanceTypes() []string {
i++
}
// Dict keys aren't iterated in a consistent order
// So we sort the map to make the output consistent
// So we sort the array to make the output consistent
slices.Sort(instanceTypes)
return instanceTypes
}
Expand Down

0 comments on commit 8d0e43f

Please sign in to comment.