diff --git a/feature/dynamodb/attributevalue/encode.go b/feature/dynamodb/attributevalue/encode.go index 441a6fdfdf9..fa57dbb3dff 100644 --- a/feature/dynamodb/attributevalue/encode.go +++ b/feature/dynamodb/attributevalue/encode.go @@ -88,7 +88,7 @@ type Marshaler interface { // type. This value can be used in API operations to simplify marshaling // your Go value types into AttributeValues. // -// Marshal will recursively transverse the passed in value marshaling its +// Marshal will recursively traverse the passed in value marshaling its // contents into a AttributeValue. Marshal supports basic scalars // (int,uint,float,bool,string), maps, slices, and structs. Anonymous // nested types are flattened based on Go anonymous type visibility. @@ -191,7 +191,7 @@ func Marshal(in interface{}) (types.AttributeValue, error) { // // Use the `optsFns` functional options to override the default configuration. // -// MarshalWithOptions will recursively transverse the passed in value marshaling its +// MarshalWithOptions will recursively traverse the passed in value marshaling its // contents into a AttributeValue. Marshal supports basic scalars // (int,uint,float,bool,string), maps, slices, and structs. Anonymous // nested types are flattened based on Go anonymous type visibility. diff --git a/feature/dynamodbstreams/attributevalue/encode.go b/feature/dynamodbstreams/attributevalue/encode.go index 871a051c430..090a947fccd 100644 --- a/feature/dynamodbstreams/attributevalue/encode.go +++ b/feature/dynamodbstreams/attributevalue/encode.go @@ -88,7 +88,7 @@ type Marshaler interface { // type. This value can be used in API operations to simplify marshaling // your Go value types into AttributeValues. // -// Marshal will recursively transverse the passed in value marshaling its +// Marshal will recursively traverse the passed in value marshaling its // contents into a AttributeValue. Marshal supports basic scalars // (int,uint,float,bool,string), maps, slices, and structs. Anonymous // nested types are flattened based on Go anonymous type visibility. @@ -191,7 +191,7 @@ func Marshal(in interface{}) (types.AttributeValue, error) { // // Use the `optsFns` functional options to override the default configuration. // -// MarshalWithOptions will recursively transverse the passed in value marshaling its +// MarshalWithOptions will recursively traverse the passed in value marshaling its // contents into a AttributeValue. Marshal supports basic scalars // (int,uint,float,bool,string), maps, slices, and structs. Anonymous // nested types are flattened based on Go anonymous type visibility.