Skip to content

Commit 2dece6f

Browse files
Commit fix
1 parent 2cc3e10 commit 2dece6f

File tree

1 file changed

+12
-12
lines changed
  • DynamoDbEncryption/runtimes/go/ImplementationFromDafny-go/dbesdkmiddleware

1 file changed

+12
-12
lines changed

DynamoDbEncryption/runtimes/go/ImplementationFromDafny-go/dbesdkmiddleware/utils.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"github.com/aws/aws-sdk-go-v2/service/dynamodb/types"
66
)
77

8-
// Deep Copy PutItemInput performs a deep copy of a PutItemInput struct.
8+
// deepCopyPutItemInput performs a deep copy of a PutItemInput struct.
99
func deepCopyPutItemInput(input *dynamodb.PutItemInput) *dynamodb.PutItemInput {
1010
if input == nil {
1111
return nil
@@ -58,7 +58,7 @@ func deepCopyPutItemInput(input *dynamodb.PutItemInput) *dynamodb.PutItemInput {
5858
}
5959
}
6060

61-
// Deep copy GetItemInput performs a deep copy of a GetItemInput struct.
61+
// deepCopyGetItemInput performs a deep copy of a GetItemInput struct.
6262
func deepCopyGetItemInput(input *dynamodb.GetItemInput) *dynamodb.GetItemInput {
6363
if input == nil {
6464
return nil
@@ -106,7 +106,7 @@ func deepCopyGetItemInput(input *dynamodb.GetItemInput) *dynamodb.GetItemInput {
106106
}
107107
}
108108

109-
// Deep Copy GetItemInput performs a deep copy of a BatchGetItemInput struct.
109+
// deepCopyBatchGetItemInput performs a deep copy of a BatchGetItemInput struct.
110110
func deepCopyBatchGetItemInput(input *dynamodb.BatchGetItemInput) *dynamodb.BatchGetItemInput {
111111
if input == nil {
112112
return nil
@@ -124,7 +124,7 @@ func deepCopyBatchGetItemInput(input *dynamodb.BatchGetItemInput) *dynamodb.Batc
124124
}
125125
}
126126

127-
// DeepCopyBatchExecuteStatementInput performs a deep copy of a BatchExecuteStatementInput struct.
127+
// deepCopyBatchExecuteStatementInput performs a deep copy of a BatchExecuteStatementInput struct.
128128
func deepCopyBatchExecuteStatementInput(input *dynamodb.BatchExecuteStatementInput) *dynamodb.BatchExecuteStatementInput {
129129
if input == nil {
130130
return nil
@@ -141,7 +141,7 @@ func deepCopyBatchExecuteStatementInput(input *dynamodb.BatchExecuteStatementInp
141141
}
142142
}
143143

144-
// DeepCopyBatchWriteItemInput performs a deep copy of a BatchWriteItemInput struct.
144+
// deepCopyBatchWriteItemInput performs a deep copy of a BatchWriteItemInput struct.
145145
func deepCopyBatchWriteItemInput(input *dynamodb.BatchWriteItemInput) *dynamodb.BatchWriteItemInput {
146146
if input == nil {
147147
return nil
@@ -163,7 +163,7 @@ func deepCopyBatchWriteItemInput(input *dynamodb.BatchWriteItemInput) *dynamodb.
163163
}
164164
}
165165

166-
// DeepCopyDeleteItemInput performs a deep copy of a DeleteItemInput struct.
166+
// deepCopyDeleteItemInput performs a deep copy of a DeleteItemInput struct.
167167
func deepCopyDeleteItemInput(input *dynamodb.DeleteItemInput) *dynamodb.DeleteItemInput {
168168
if input == nil {
169169
return nil
@@ -209,7 +209,7 @@ func deepCopyDeleteItemInput(input *dynamodb.DeleteItemInput) *dynamodb.DeleteIt
209209
}
210210
}
211211

212-
// DeepCopyExecuteStatementInput performs a deep copy of an ExecuteStatementInput struct.
212+
// deepCopyExecuteStatementInput performs a deep copy of an ExecuteStatementInput struct.
213213
func deepCopyExecuteStatementInput(input *dynamodb.ExecuteStatementInput) *dynamodb.ExecuteStatementInput {
214214
if input == nil {
215215
return nil
@@ -253,7 +253,7 @@ func deepCopyExecuteStatementInput(input *dynamodb.ExecuteStatementInput) *dynam
253253
}
254254
}
255255

256-
// DeepCopyExecuteTransactionInput performs a deep copy of an ExecuteTransactionInput struct.
256+
// deepCopyExecuteTransactionInput performs a deep copy of an ExecuteTransactionInput struct.
257257
func deepCopyExecuteTransactionInput(input *dynamodb.ExecuteTransactionInput) *dynamodb.ExecuteTransactionInput {
258258
if input == nil {
259259
return nil
@@ -277,7 +277,7 @@ func deepCopyExecuteTransactionInput(input *dynamodb.ExecuteTransactionInput) *d
277277
}
278278
}
279279

280-
// DeepCopyQueryInput performs a deep copy of a QueryInput struct.
280+
// deepCopyQueryInput performs a deep copy of a QueryInput struct.
281281
func deepCopyQueryInput(input *dynamodb.QueryInput) *dynamodb.QueryInput {
282282
if input == nil {
283283
return nil
@@ -360,7 +360,7 @@ func deepCopyQueryInput(input *dynamodb.QueryInput) *dynamodb.QueryInput {
360360
}
361361
}
362362

363-
// DeepCopyScanInput performs a deep copy of a ScanInput struct.
363+
// deepCopyScanInput performs a deep copy of a ScanInput struct.
364364
func deepCopyScanInput(input *dynamodb.ScanInput) *dynamodb.ScanInput {
365365
if input == nil {
366366
return nil
@@ -442,7 +442,7 @@ func deepCopyScanInput(input *dynamodb.ScanInput) *dynamodb.ScanInput {
442442
}
443443
}
444444

445-
// DeepCopyTransactGetItemsInput performs a deep copy of a TransactGetItemsInput struct.
445+
// deepCopyTransactGetItemsInput performs a deep copy of a TransactGetItemsInput struct.
446446
func deepCopyTransactGetItemsInput(input *dynamodb.TransactGetItemsInput) *dynamodb.TransactGetItemsInput {
447447
if input == nil {
448448
return nil
@@ -486,7 +486,7 @@ func deepCopyTransactWriteItemsInput(input *dynamodb.TransactWriteItemsInput) *d
486486
}
487487
}
488488

489-
// DeepCopyUpdateItemInput performs a deep copy of an UpdateItemInput struct.
489+
// deepCopyUpdateItemInput performs a deep copy of an UpdateItemInput struct.
490490
func deepCopyUpdateItemInput(input *dynamodb.UpdateItemInput) *dynamodb.UpdateItemInput {
491491
if input == nil {
492492
return nil

0 commit comments

Comments
 (0)