From 75439c1dd3cf89e616c1a4fb62201fa78300d83d Mon Sep 17 00:00:00 2001 From: sot528 Date: Wed, 17 Jan 2018 21:45:30 +0900 Subject: [PATCH] fix reference of RBAC usage. --- contracts/ownership/rbac/RBAC.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/ownership/rbac/RBAC.sol b/contracts/ownership/rbac/RBAC.sol index d664e66fa86..16ff0d512b4 100644 --- a/contracts/ownership/rbac/RBAC.sol +++ b/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,