minor RBAC.sol documentation fix (#1060)

This commit is contained in:
Doug Crescenzi
2018-07-20 11:09:47 -04:00
committed by Francisco Giordano
parent c95ea5125d
commit 90b3050ad7

View File

@ -11,8 +11,6 @@ import "./Roles.sol";
* 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.
* It's also recommended that you define constants in the contract, like ROLE_ADMIN below,
* to avoid typos.
*/
contract RBAC {
using Roles for Roles.Role;