Skip to content

Commit aff850f

Browse files
committed
Fix incorrect doc imports
1 parent 5732401 commit aff850f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/modules/ROOT/pages/erc20.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Here's what our GLD token might look like.
1717
// SPDX-License-Identifier: MIT
1818
pragma solidity ^0.8.19;
1919
20-
import {ERC20} "@openzeppelin/contracts/token/ERC20/ERC20.sol";
20+
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
2121
2222
contract GLDToken is ERC20 {
2323
constructor(uint256 initialSupply) ERC20("Gold", "GLD") {

docs/modules/ROOT/pages/erc721.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Here's what a contract for tokenized items might look like:
1616
// SPDX-License-Identifier: MIT
1717
pragma solidity ^0.8.19;
1818
19-
import {ERC721URIStorage} "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
19+
import {ERC721URIStorage} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
2020
2121
contract GameItem is ERC721URIStorage {
2222
uint256 private _nextTokenId;

0 commit comments

Comments
 (0)