Skip to content

Commit 692b41c

Browse files
authored
Fix some broken links (#207)
1 parent 84bd28f commit 692b41c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

contracts/eip/ERC721A.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import "../lib/TWStrings.sol";
1212
import "./ERC165.sol";
1313

1414
/**
15-
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
15+
* @dev Implementation of [ERC721](https://eips.ethereum.org/EIPS/eip-721) Non-Fungible Token Standard, including
1616
* the Metadata extension. Built to optimize for lower gas during batch mints.
1717
*
1818
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).

contracts/eip/interface/IERC165.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pragma solidity ^0.8.0;
55

66
/**
77
* @dev Interface of the ERC165 standard, as defined in the
8-
* https://eips.ethereum.org/EIPS/eip-165[EIP].
8+
* [EIP](https://eips.ethereum.org/EIPS/eip-165).
99
*
1010
* Implementers can declare support of contract interfaces, which can then be
1111
* queried by others ({ERC165Checker}).
@@ -16,7 +16,7 @@ interface IERC165 {
1616
/**
1717
* @dev Returns true if this contract implements the interface defined by
1818
* `interfaceId`. See the corresponding
19-
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
19+
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
2020
* to learn more about how these ids are created.
2121
*
2222
* This function call must use less than 30 000 gas.

contracts/lib/TWAddress.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ library TWAddress {
4545
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
4646
* `recipient`, forwarding all available gas and reverting on errors.
4747
*
48-
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
48+
* [EIP1884](https://eips.ethereum.org/EIPS/eip-1884) increases the gas cost
4949
* of certain opcodes, possibly making contracts go over the 2300 gas limit
5050
* imposed by `transfer`, making them unable to receive funds via
5151
* `transfer`. {sendValue} removes this limitation.

contracts/lib/TWBitMaps.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pragma solidity ^0.8.0;
44

55
/**
66
* @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential.
7-
* Largelly inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].
7+
* Largely inspired by Uniswap's [merkle-distributor](https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol).
88
*/
99
library TWBitMaps {
1010
struct BitMap {

0 commit comments

Comments
 (0)