Update Prettier Solidity (#3898)
This commit is contained in:
@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user