Skip to content

Commit 21e72cf

Browse files
authored
docs: fix typo in documentation
1 parent 14fe1cd commit 21e72cf

File tree

1 file changed

+1
-1
lines changed
  • public/content/developers/tutorials/erc20-with-safety-rails

1 file changed

+1
-1
lines changed

public/content/developers/tutorials/erc20-with-safety-rails/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Freezing and thawing contracts requires several changes:
146146
mapping(address => bool) public frozenAccounts;
147147
```
148148

149-
- [Events](https://www.tutorialspoint.com/solidity/solidity_events.htm) to inform anybody interested when an account is frozen or thawed. Technically speaking events are not required for these actions, but it helps offchain code to be able to listen to these events and know what is happening. It's considered good manners for a smart contract to emit them when something that miught be relevant to somebody else happens.
149+
- [Events](https://www.tutorialspoint.com/solidity/solidity_events.htm) to inform anybody interested when an account is frozen or thawed. Technically speaking events are not required for these actions, but it helps offchain code to be able to listen to these events and know what is happening. It's considered good manners for a smart contract to emit them when something that might be relevant to somebody else happens.
150150

151151
The events are indexed so will be possible to search for all the times an account has been frozen or thawed.
152152

0 commit comments

Comments
 (0)