style(security-considerations): fix mapping style

This commit is contained in:
Nicolás Acosta 2023-02-01 15:51:56 -03:00
parent 7b8478a81b
commit 1edfd73b37

View File

@ -336,7 +336,7 @@ field of a ``struct`` that is the base type of a dynamic storage array. The
pragma solidity >=0.6.0 <0.9.0;
contract Map {
mapping (uint => uint)[] array;
mapping(uint => uint)[] array;
function allocate(uint newMaps) public {
for (uint i = 0; i < newMaps; i++)