From 8d0e43fe5736e55953a567c84eaa5a488deb7750 Mon Sep 17 00:00:00 2001 From: Henrique Santos Date: Thu, 8 Feb 2024 14:05:31 +0000 Subject: [PATCH] Typo fix --- internal/pkg/services/mongodbflex/utils/utils.go | 2 +- internal/pkg/services/postgresflex/utils/utils.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/pkg/services/mongodbflex/utils/utils.go b/internal/pkg/services/mongodbflex/utils/utils.go index 39fe6881..30b94369 100644 --- a/internal/pkg/services/mongodbflex/utils/utils.go +++ b/internal/pkg/services/mongodbflex/utils/utils.go @@ -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 } diff --git a/internal/pkg/services/postgresflex/utils/utils.go b/internal/pkg/services/postgresflex/utils/utils.go index ea26fefa..d5582b2f 100644 --- a/internal/pkg/services/postgresflex/utils/utils.go +++ b/internal/pkg/services/postgresflex/utils/utils.go @@ -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 }