Skip to content

Commit 6969f42

Browse files
deneverttAmxx
andauthored
fix: correct backtick formatting in ECDSA recover function natspec (#6153)
Co-authored-by: Hadrien Croubois <[email protected]>
1 parent 31f9029 commit 6969f42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/utils/cryptography/ECDSA.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ library ECDSA {
155155
}
156156

157157
/**
158-
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
158+
* @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately.
159159
*/
160160
function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
161161
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);

0 commit comments

Comments
 (0)