Browse Source

Merge branch 'master' into feature/implement_erc721_standard

Facundo Spagnuolo 7 years ago
parent
commit
e1d32acae8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contracts/ownership/rbac/RBAC.sol

+ 1 - 1
contracts/ownership/rbac/RBAC.sol

@@ -8,7 +8,7 @@ import "./Roles.sol";
  * @author Matt Condon (@Shrugs)
  * @dev Stores and provides setters and getters for roles and addresses.
  *      Supports unlimited numbers of roles and addresses.
- *      See //contracts/examples/RBACExample.sol for an example of usage.
+ *      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,