From c79203e087ae31e5bc32b9440bb570218b2270d6 Mon Sep 17 00:00:00 2001 From: MarcusWentz <52706599+MarcusWentz@users.noreply.github.com> Date: Tue, 1 Oct 2024 11:36:57 -0400 Subject: [PATCH] Update pbrMathSquareRootTesting.sol --- Contracts/pbrMathSquareRootTesting.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Contracts/pbrMathSquareRootTesting.sol b/Contracts/pbrMathSquareRootTesting.sol index 070981f..6fea468 100644 --- a/Contracts/pbrMathSquareRootTesting.sol +++ b/Contracts/pbrMathSquareRootTesting.sol @@ -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. @@ -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.