Skip to content

Commit

Permalink
Update pbrMathSquareRootTesting.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusWentz authored Oct 1, 2024
1 parent 2fd8100 commit c79203e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Contracts/pbrMathSquareRootTesting.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ contract pbrMathSquareRootTesting {
function unsignedSquareRootTestSmallValueReturnRawValue() external pure returns (UD60x18 result) {
// 1 wei in uint256 is actually 1 ether in UD60x18 fixed point types.

// //9 decimal places in precision.
// // 9 decimal places in precision.
// UD60x18 x = UD60x18.wrap(1);

// 18 decimal places in precision.
Expand All @@ -25,7 +25,7 @@ contract pbrMathSquareRootTesting {
/// @notice Calculates the square root for the given signed number.
function unsignedSquareRootTestReturnUint256() external pure returns (uint256 result) {

// //9 decimal places in precision.
// // 9 decimal places in precision.
// UD60x18 x = UD60x18.wrap(1);

// 18 decimal places in precision.
Expand Down

0 comments on commit c79203e

Please sign in to comment.