We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24b5b48 commit e48dfc4Copy full SHA for e48dfc4
DynamoDbEncryption/dafny/DynamoDbEncryption/src/DynamoToStruct.dfy
@@ -657,7 +657,7 @@ module DynamoToStruct {
657
var len := |attrNames| as uint64;
658
var output :- U32ToBigEndian64(len);
659
for i : uint64 := 0 to len {
660
- var k := attrNames[i];
+ var k: AttributeName := attrNames[i];
661
var val := AttrToBytes(m[k], true, depth+1);
662
if val.Failure? {
663
var result := Failure(val.error);
0 commit comments