From 90b3050ad7c38414f60581945240936184b0b2cf Mon Sep 17 00:00:00 2001 From: Doug Crescenzi Date: Fri, 20 Jul 2018 11:09:47 -0400 Subject: [PATCH] minor RBAC.sol documentation fix (#1060) --- contracts/ownership/rbac/RBAC.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/contracts/ownership/rbac/RBAC.sol b/contracts/ownership/rbac/RBAC.sol index 89c85efb0..c9b1c5308 100644 --- a/contracts/ownership/rbac/RBAC.sol +++ b/contracts/ownership/rbac/RBAC.sol @@ -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;