Skip to content

Commit

Permalink
fix: variable name collision fix for Go
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubham Chaturvedi committed Oct 15, 2024
1 parent 656d046 commit ceaec06
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ module DDBKeystoreOperations {
function method CreateTransactWritePutItem(
item: DDB.AttributeMap,
tableName: DDB.TableName,
ConditionExpression: ConditionExpression
conditionExpression: ConditionExpression
): (output: DDB.TransactWriteItem)
{

Expand All @@ -361,7 +361,7 @@ module DDBKeystoreOperations {
Item := item,
TableName := tableName,
ConditionExpression := Some(
match ConditionExpression
match conditionExpression
case BRANCH_KEY_NOT_EXIST() => BRANCH_KEY_NOT_EXIST_CONDITION
case BRANCH_KEY_EXISTS() => BRANCH_KEY_EXISTS_CONDITION
),
Expand Down

0 comments on commit ceaec06

Please sign in to comment.