Skip to content

Commit f54fb4d

Browse files
authored
Merge pull request #15048 from ozrg/patch-2
docs: fix typo in documentation
2 parents 102b9b1 + 21e72cf commit f54fb4d

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)