Skip to content

Commit e638dff

Browse files
committed
chore(library-solidity): fix typo in comment
1 parent 7b9e5a4 commit e638dff

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

host-contracts/lib/FHE.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9525,8 +9525,8 @@ library FHE {
95259525
/// - The `decryptionProof` is empty or has an invalid length.
95269526
/// - The number of valid signatures is zero or less than the configured KMS signers threshold.
95279527
/// - Any signature is produced by an address that is not a registered KMS signer.
9528-
/// @dev Returns false if any there are enough signatures to reach threshold, but some recovered signer is duplicated.
9529-
/// @return true if the signatures verification succeeds, false or revert otherwise.
9528+
/// @dev Returns false if there are enough signatures to reach threshold, but some recovered signer is duplicated.
9529+
/// @return true if the signatures verification succeeds, false or reverts otherwise.
95309530
function isPublicDecryptionResultValid(
95319531
bytes32[] memory handlesList,
95329532
bytes memory abiEncodedCleartexts,

library-solidity/codegen/src/templates/FHE.sol-template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@ library FHE {
318318
/// - The `decryptionProof` is empty or has an invalid length.
319319
/// - The number of valid signatures is zero or less than the configured KMS signers threshold.
320320
/// - Any signature is produced by an address that is not a registered KMS signer.
321-
/// @dev Returns false if any there are enough signatures to reach threshold, but some recovered signer is duplicated.
322-
/// @return true if the signatures verification succeeds, false or revert otherwise.
321+
/// @dev Returns false if there are enough signatures to reach threshold, but some recovered signer is duplicated.
322+
/// @return true if the signatures verification succeeds, false or reverts otherwise.
323323
function isPublicDecryptionResultValid(
324324
bytes32[] memory handlesList,
325325
bytes memory abiEncodedCleartexts,

library-solidity/lib/FHE.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9525,8 +9525,8 @@ library FHE {
95259525
/// - The `decryptionProof` is empty or has an invalid length.
95269526
/// - The number of valid signatures is zero or less than the configured KMS signers threshold.
95279527
/// - Any signature is produced by an address that is not a registered KMS signer.
9528-
/// @dev Returns false if any there are enough signatures to reach threshold, but some recovered signer is duplicated.
9529-
/// @return true if the signatures verification succeeds, false or revert otherwise.
9528+
/// @dev Returns false if there are enough signatures to reach threshold, but some recovered signer is duplicated.
9529+
/// @return true if the signatures verification succeeds, false or reverts otherwise.
95309530
function isPublicDecryptionResultValid(
95319531
bytes32[] memory handlesList,
95329532
bytes memory abiEncodedCleartexts,

0 commit comments

Comments
 (0)