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 import line in the README example code #65

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Here is an example deployment (where the contract is located in [`src/test/contr
// SPDX-License-Identifier: Apache-2.0
pragma solidity >=0.7.0 <0.9.0;

import {HuffDeployer} from "foundry-huff/HuffDeployer";
import {HuffDeployer} from "foundry-huff/HuffDeployer.sol";

interface Number {
function setNumber(uint256) external;
Expand All @@ -62,7 +62,7 @@ For example, to deploy the contract [`src/test/contracts/Constructor.huff`](src/
// SPDX-License-Identifier: Apache-2.0
pragma solidity >=0.7.0 <0.9.0;

import {HuffDeployer} from "foundry-huff/HuffDeployer";
import {HuffDeployer} from "foundry-huff/HuffDeployer.sol";

interface Constructor {
function getArgOne() external returns (address);
Expand Down Expand Up @@ -108,7 +108,7 @@ Let's use the huff contract [`src/test/contracts/NoConstructor.huff`](./src/test
// SPDX-License-Identifier: Apache-2.0
pragma solidity >=0.7.0 <0.9.0;

import {HuffDeployer} from "foundry-huff/HuffDeployer";
import {HuffDeployer} from "foundry-huff/HuffDeployer.sol";

interface Constructor {
function getArgOne() external returns (address);
Expand Down