From a91a922822dc6572a8b0ed7a1192eda2bb6bc68b Mon Sep 17 00:00:00 2001 From: lloydchang Date: Tue, 7 Sep 2021 23:40:40 -0700 Subject: [PATCH] docs(doc.go): fix error fix error: cannot use tableName (type string) as type *string in argument to aws.ToString (exit status 2) same fix as https://github.com/aws/aws-sdk-go-v2/pull/1057 --- doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc.go b/doc.go index 509c01e5b37..81644bf8b7a 100644 --- a/doc.go +++ b/doc.go @@ -52,7 +52,7 @@ // // fmt.Println("Tables:") // for _, tableName := range resp.TableNames { -// fmt.Println(aws.ToString(tableName)) +// fmt.Println(tableName) // } // } package sdk