Skip to content

Commit 20fe468

Browse files
committed
chore: added fixed fragment
1 parent 3004755 commit 20fe468

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/contracts/4.x/access-control.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Most software uses access control systems that are role-based: some users are re
5656
OpenZeppelin Contracts provides [`AccessControl`](/contracts/4.x/api/access#AccessControl) for implementing role-based access control. Its usage is straightforward: for each role that you want to define,
5757
you will create a new _role identifier_ that is used to grant, revoke, and check if an account has that role.
5858

59-
Here’s a simple example of using `AccessControl` in an [`ERC20` token](/contracts/4.x/tokens#ERC20) to define a 'minter' role, which allows accounts that have it create new tokens:
59+
Here’s a simple example of using `AccessControl` in an [`ERC20` token](/contracts/4.x/erc20) to define a 'minter' role, which allows accounts that have it create new tokens:
6060

6161
```solidity
6262
// contracts/MyToken.sol

0 commit comments

Comments
 (0)