Skip to content

Commit

Permalink
Fix natspec docstrings format (#8109)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorhodes authored Jun 17, 2021
1 parent cba251c commit 9e04953
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/protocol/contracts/common/Accounts.sol
Original file line number Diff line number Diff line change
Expand Up @@ -944,13 +944,14 @@ contract Accounts is
}

/**
* @notice Returns the address that signed the provided role authorization
* @notice Returns the address that signed the provided role authorization.
* @param account The `account` property signed over in the EIP712 signature
* @param signer The `signer` property signed over in the EIP712 signature
* @param role The `role` property signed over in the EIP712 signature
* @param v The recovery id of the incoming ECDSA signature.
* @param r Output value r of the ECDSA signature.
* @param s Output value s of the ECDSA signature.
* @return The address that signed the provided role authorization.
*/
function getRoleAuthorizationSigner(
address account,
Expand All @@ -969,6 +970,7 @@ contract Accounts is
/**
* @notice Authorizes a role of `msg.sender`'s account to another address (`authorized`).
* @param authorized The address to authorize.
* @param role The role to authorize.
* @param v The recovery id of the incoming ECDSA signature.
* @param r Output value r of the ECDSA signature.
* @param s Output value s of the ECDSA signature.
Expand Down

0 comments on commit 9e04953

Please sign in to comment.