From b7108cb6bddd0332fbfb280de41b89d56f1fc3dc Mon Sep 17 00:00:00 2001 From: Shane Starcher Date: Wed, 20 Apr 2016 09:51:47 -0400 Subject: [PATCH] Missing parenthes in docs adding parenthes --- aws/session/session.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/session/session.go b/aws/session/session.go index 47e4536ff1c..6bc8f1be958 100644 --- a/aws/session/session.go +++ b/aws/session/session.go @@ -86,7 +86,7 @@ func initHandlers(s *Session) { // // Example: // // Create a copy of the current session, configured for the us-west-2 region. -// sess.Copy(&aws.Config{Region: aws.String("us-west-2"}) +// sess.Copy(&aws.Config{Region: aws.String("us-west-2")}) func (s *Session) Copy(cfgs ...*aws.Config) *Session { newSession := &Session{ Config: s.Config.Copy(cfgs...),