Skip to content

Commit bedce38

Browse files
committed
two more
1 parent 3329da4 commit bedce38

File tree

2 files changed

+2
-2
lines changed
  • DynamoDbEncryption/dafny

2 files changed

+2
-2
lines changed

DynamoDbEncryption/dafny/DynamoDbEncryptionTransforms/src/Index.dfy

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ module
102102
}
103103

104104
method {:vcs_split_on_every_assert} DynamoDbEncryptionTransforms(config: AwsCryptographyDbEncryptionSdkDynamoDbTypes.DynamoDbTablesEncryptionConfig)
105-
returns (res: Result<IDynamoDbEncryptionTransformsClient, Error>)
105+
returns (res: Result<DynamoDbEncryptionTransformsClient, Error>)
106106
//= specification/dynamodb-encryption-client/ddb-table-encryption-config.md#logical-table-name
107107
//= type=implication
108108
//# When mapping [DynamoDB Table Names](#dynamodb-table-name) to [logical table name](#logical-table-name)

DynamoDbEncryption/dafny/DynamoDbItemEncryptor/src/Index.dfy

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module
4545
}
4646

4747
method {:vcs_split_on_every_assert} DynamoDbItemEncryptor(config: DynamoDbItemEncryptorConfig)
48-
returns (res: Result<IDynamoDbItemEncryptorClient, Error>)
48+
returns (res: Result<DynamoDbItemEncryptorClient, Error>)
4949
ensures res.Success? ==>
5050
&& res.value is DynamoDbItemEncryptorClient
5151
&& var rconfig := (res.value as DynamoDbItemEncryptorClient).config;

0 commit comments

Comments
 (0)