From 4a1e34c74feeeac9f533243754a5130c189062bb Mon Sep 17 00:00:00 2001 From: Kyle Robertson Date: Wed, 10 Mar 2021 22:01:20 -0500 Subject: [PATCH] updated comment Co-authored-by: Yevgeniy Brikman --- modules/aws/rds.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aws/rds.go b/modules/aws/rds.go index a436c47d2..25afcf56f 100644 --- a/modules/aws/rds.go +++ b/modules/aws/rds.go @@ -240,7 +240,7 @@ func GetRecommendedRdsInstanceTypeE(t testing.TestingT, region string, engine st // GetRecommendedRdsInstanceTypeWithClientE takes in a list of RDS instance types (e.g., "db.t2.micro", "db.t3.micro") and returns the // first instance type in the list that is available in the given region and for the given database engine type. -// If none of the instances provided are avaiable for your combination of region and database engine, this function will exit with an error. +// If none of the instances provided are avaiable for your combination of region and database engine, this function will return an error. // This function expects an authenticated RDS client from the AWS SDK Go library. func GetRecommendedRdsInstanceTypeWithClientE(t testing.TestingT, rdsClient *rds.RDS, engine string, engineVersion string, instanceTypeOptions []string) (string, error) { for _, instanceTypeOption := range instanceTypeOptions {