From 0aee8fca781535768cbd213982bf28f7c332db62 Mon Sep 17 00:00:00 2001 From: Jason Economou Date: Tue, 25 Nov 2025 10:29:54 -0500 Subject: [PATCH] docs: fix typo --- feature/dynamodb/attributevalue/encode.go | 4 ++-- feature/dynamodbstreams/attributevalue/encode.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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.