Skip to content

Commit 745e94f

Browse files
Fix doc rendering issue for power numbers
1 parent 4a0fe8f commit 745e94f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contracts/eip/ERC721A.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ import "./ERC165.sol";
1717
*
1818
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
1919
*
20-
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
20+
* Assumes that an owner cannot have more than 2^64 - 1 (max value of uint64) of supply.
2121
*
22-
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
22+
* Assumes that the maximum token id cannot exceed 2^256 - 1 (max value of uint256).
2323
*/
2424
contract ERC721A is Context, ERC165, IERC721A {
2525
using TWAddress for address;

docs/ERC721A.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88

9-
*Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension. Built to optimize for lower gas during batch mints. Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).*
9+
*Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension. Built to optimize for lower gas during batch mints. Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). Assumes that an owner cannot have more than 2^64 - 1 (max value of uint64) of supply. Assumes that the maximum token id cannot exceed 2^256 - 1 (max value of uint256).*
1010

1111
## Methods
1212

0 commit comments

Comments
 (0)