Skip to content

Commit

Permalink
prettier - contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
julianmrodri committed Jul 5, 2023
1 parent fe85f8a commit 451ba68
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion contracts/libraries/test/FixedCallerMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,12 @@ contract FixedCallerMock {
) public pure returns (uint192) {
return FixLib.safeMul(a, b, rnd);
}
function safeDiv_(uint192 a, uint192 b, RoundingMode rnd) public pure returns (uint192) {

function safeDiv_(
uint192 a,
uint192 b,
RoundingMode rnd
) public pure returns (uint192) {
return FixLib.safeDiv(a, b, rnd);
}

Expand Down

0 comments on commit 451ba68

Please sign in to comment.