Update Prettier Solidity (#3898)

This commit is contained in:
Francisco Giordano
2022-12-26 23:28:51 -03:00
parent 81dbe643a0
commit 4147005b0c
100 changed files with 15893 additions and 2740 deletions

View File

@ -23,11 +23,7 @@ library BitMaps {
/**
* @dev Sets the bit at `index` to the boolean `value`.
*/
function setTo(
BitMap storage bitmap,
uint256 index,
bool value
) internal {
function setTo(BitMap storage bitmap, uint256 index, bool value) internal {
if (value) {
set(bitmap, index);
} else {