Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: typos #28

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contracts/token/erc721/ImmutableERC721Base.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import "@openzeppelin/contracts/utils/Counters.sol";

/*
ImmutableERC721Base is an abstract contract that offers minimum preset functionality without
an opinionated form of minting. This contract is intended to be inherited and implement it's
an opinionated form of minting. This contract is intended to be inherited and implement its
own minting functionality to meet the needs of the inheriting contract.
*/

Expand All @@ -39,7 +39,7 @@ abstract contract ImmutableERC721Base is
/// @dev the tokenId of the next NFT to be minted.
Counters.Counter private nextTokenId;

/// @dev Owner of the contract (defined for interopability with applications, e.g. storefront marketplace)
/// @dev Owner of the contract (defined for interoperability with applications, e.g. storefront marketplace)
address private _owner;

/// ===== Constructor =====
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe("Immutable ERC721 Permissioned Mintable Test Cases", function () {
// Get contract
const erc721PresetFactory = (await ethers.getContractFactory("ImmutableERC721PermissionedMintable")) as ImmutableERC721PermissionedMintable__factory;

// Deploy ERC721 contract and intialize state
// Deploy ERC721 contract and initialize state
erc721 = await erc721PresetFactory.deploy(owner.address, name, symbol, baseURI, contractURI);
console.log("Deployed ERC721 to address: ", erc721.address);

Expand Down Expand Up @@ -169,4 +169,4 @@ describe("Immutable ERC721 Permissioned Mintable Test Cases", function () {
expect(await erc721.supportsInterface("0x780e9d63")).to.equal(true);
});
});
});
});