From 9e04953da04bb784d7d002d81129ec9cc8ab427b Mon Sep 17 00:00:00 2001 From: Yorke Rhodes Date: Wed, 16 Jun 2021 17:40:09 -0700 Subject: [PATCH] Fix natspec docstrings format (#8109) --- packages/protocol/contracts/common/Accounts.sol | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/protocol/contracts/common/Accounts.sol b/packages/protocol/contracts/common/Accounts.sol index 9261394e013..a9ce16f962f 100644 --- a/packages/protocol/contracts/common/Accounts.sol +++ b/packages/protocol/contracts/common/Accounts.sol @@ -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, @@ -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.