Update deps

This commit is contained in:
Jeff Mitchell
2016-09-02 18:05:09 -04:00
parent a6aec4d7c9
commit a26fe991ba
204 changed files with 11131 additions and 2336 deletions

View File

@@ -31,7 +31,12 @@
//
// Marshal Go value type for DynamoDB.PutItem:
//
// sess := session.New()
// sess, err := session.NewSession()
// if err != nil {
// fmt.Println("Failed create session", err)
// return
// }
//
// svc := dynamodb.New(sess)
// item, err := dynamodbattribute.MarshalMap(r)
// if err != nil {

View File

@@ -9,7 +9,7 @@ import (
"github.com/aws/aws-sdk-go/service/dynamodb"
)
// A Marshaler is an interface to provide custom marshalling of Go value types
// A Marshaler is an interface to provide custom marshaling of Go value types
// to AttributeValues. Use this to provide custom logic determining how a
// Go Value type should be marshaled.
//