Remove redundant @dev tags (#995)

* Remove redundant @dev tags

* Remove redundant @notice tags
This commit is contained in:
Arun Kumar
2018-06-14 17:19:59 -05:00
committed by Matt Condon
parent b4406d385f
commit 07020e9544
22 changed files with 102 additions and 125 deletions

View File

@ -7,14 +7,13 @@ import "../ownership/rbac/RBAC.sol";
* @title RBACWithAdmin
* @author Matt Condon (@Shrugs)
* @dev It's recommended that you define constants in the contract,
* @dev like ROLE_ADMIN below, to avoid typos.
* @dev
* @dev NOTE: RBACWithAdmin is probably too expansive and powerful for your
* @dev application; an admin is actually able to change any address to any role
* @dev which is a very large API surface. It's recommended that you follow a strategy
* @dev of strictly defining the abilities of your roles
* @dev and the API-surface of your contract.
* @dev This is just an example for example's sake.
* like ROLE_ADMIN below, to avoid typos.
* @notice RBACWithAdmin is probably too expansive and powerful for your
* application; an admin is actually able to change any address to any role
* which is a very large API surface. It's recommended that you follow a strategy
* of strictly defining the abilities of your roles
* and the API-surface of your contract.
* This is just an example for example's sake.
*/
contract RBACWithAdmin is RBAC {
/**