Skip to content

Commit

Permalink
small change
Browse files Browse the repository at this point in the history
  • Loading branch information
austinvalle committed Jan 17, 2025
1 parent 74bb9ae commit 4b13e9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/fwschemadata/value_semantic_equality_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,10 @@ func ValueSemanticEqualitySetElements(ctx context.Context, req ValueSemanticEqua
}

// Loop through all prior value elements and see if there are any semantically equal elements
for pIdx, priorValue := range priorValueElements {
for pIdx, priorValueElement := range priorValueElements {
elementReq := ValueSemanticEqualityRequest{
Path: req.Path.AtSetValue(proposedNewValueElement),
PriorValue: priorValue,
PriorValue: priorValueElement,
ProposedNewValue: proposedNewValueElement,
}
elementResp := &ValueSemanticEqualityResponse{
Expand Down

0 comments on commit 4b13e9d

Please sign in to comment.