From b8853da1373e0eae1aac75a8ae083c65fb54e4ed Mon Sep 17 00:00:00 2001 From: t11s Date: Thu, 8 Sep 2022 09:28:39 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Fix=20links?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/LibString.sol | 2 +- src/utils/MerkleProofLib.sol | 2 +- src/utils/SignedWadMath.sol | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils/LibString.sol b/src/utils/LibString.sol index bcd8b57a..4d9e4d93 100644 --- a/src/utils/LibString.sol +++ b/src/utils/LibString.sol @@ -2,7 +2,7 @@ pragma solidity >=0.8.0; /// @notice Efficient library for creating string representations of integers. -/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/utils/LibString.sol) +/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/LibString.sol) library LibString { function toString(uint256 value) internal pure returns (string memory str) { assembly { diff --git a/src/utils/MerkleProofLib.sol b/src/utils/MerkleProofLib.sol index 5909020a..befd36ce 100644 --- a/src/utils/MerkleProofLib.sol +++ b/src/utils/MerkleProofLib.sol @@ -2,7 +2,7 @@ pragma solidity >=0.8.0; /// @notice Gas optimized merkle proof verification library. -/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/utils/MerkleProofLib.sol) +/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/MerkleProofLib.sol) library MerkleProofLib { function verify( bytes32[] calldata proof, diff --git a/src/utils/SignedWadMath.sol b/src/utils/SignedWadMath.sol index b77e1db4..6078106f 100644 --- a/src/utils/SignedWadMath.sol +++ b/src/utils/SignedWadMath.sol @@ -2,7 +2,7 @@ pragma solidity >=0.8.0; /// @notice Signed 18 decimal fixed point (wad) arithmetic library. -/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/utils/SignedWadMath.sol) +/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SignedWadMath.sol) /// @dev Will not revert on overflow, only use where overflow is not possible. function toWadUnsafe(uint256 x) pure returns (int256 r) {