mirror of
https://github.com/OpenZeppelin/openzeppelin-contracts.git
synced 2021-05-29 14:48:28 +03:00
Fix code style parameters in Event (#2324)
* chore: fix code style parameters in Event * chore: update code style for events
This commit is contained in:
committed by
GitHub
parent
0fc9578fe6
commit
e5da0986bb
@@ -78,9 +78,9 @@ Any exception or additions specific to our project are documented below.
|
||||
represent, and consequently they should be named in past tense.
|
||||
|
||||
```
|
||||
function _burn(address _who, uint256 _value) internal {
|
||||
super._burn(_who, _value);
|
||||
emit TokensBurned(_who, _value);
|
||||
function _burn(address who, uint256 value) internal {
|
||||
super._burn(who, value);
|
||||
emit TokensBurned(who, value);
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user