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,12 +7,12 @@ import "./Roles.sol";
* @title RBAC (Role-Based Access Control)
* @author Matt Condon (@Shrugs)
* @dev Stores and provides setters and getters for roles and addresses.
* @dev Supports unlimited numbers of roles and addresses.
* @dev See //contracts/mocks/RBACMock.sol for an example of usage.
* Supports unlimited numbers of roles and addresses.
* See //contracts/mocks/RBACMock.sol for an example of usage.
* This RBAC method uses strings to key roles. It may be beneficial
* for you to write your own implementation of this interface using Enums or similar.
* for you to write your own implementation of this interface using Enums or similar.
* It's also recommended that you define constants in the contract, like ROLE_ADMIN below,
* to avoid typos.
* to avoid typos.
*/
contract RBAC {
using Roles for Roles.Role;

View File

@ -5,7 +5,7 @@ pragma solidity ^0.4.24;
* @title Roles
* @author Francisco Giordano (@frangio)
* @dev Library for managing addresses assigned to a Role.
* See RBAC.sol for example usage.
* See RBAC.sol for example usage.
*/
library Roles {
struct Role {