From 543e5d37c86b41c4f57de5bf3108fd4c903b0cb1 Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Wed, 21 Oct 2020 06:12:04 -0400 Subject: [PATCH] Update aws/internal/service/autoscalingplans/finder/finder.go Co-authored-by: angie pinilla --- aws/internal/service/autoscalingplans/finder/finder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/internal/service/autoscalingplans/finder/finder.go b/aws/internal/service/autoscalingplans/finder/finder.go index 6e38289758d..90892a83c4f 100644 --- a/aws/internal/service/autoscalingplans/finder/finder.go +++ b/aws/internal/service/autoscalingplans/finder/finder.go @@ -6,7 +6,7 @@ import ( ) // ScalingPlan returns the scaling plan corresponding to the specified name and version. -// Returns returns nil and potentially an API error if no scaling plan is found. +// Returns nil and potentially an API error if no scaling plan is found. func ScalingPlan(conn *autoscalingplans.AutoScalingPlans, scalingPlanName string, scalingPlanVersion int) (*autoscalingplans.ScalingPlan, error) { input := &autoscalingplans.DescribeScalingPlansInput{ ScalingPlanNames: aws.StringSlice([]string{scalingPlanName}),