style(function-modifiers): fix mapping style

This commit is contained in:
Nicolás Acosta 2023-02-01 15:52:34 -03:00
parent 1edfd73b37
commit 72a17ceb71

View File

@ -61,7 +61,7 @@ if they are marked ``virtual``. For details, please see
}
contract Register is priced, destructible {
mapping (address => bool) registeredAddresses;
mapping(address => bool) registeredAddresses;
uint price;
constructor(uint initialPrice) { price = initialPrice; }