Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hkalodner committed Oct 13, 2023
1 parent 2241085 commit 24d7e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbitrum-docs/for-devs/quickstart-solidity-hardhat.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ Open `scripts/deploy.js` and replace its contents with the following:
const hre = require('hardhat');

async function main() {
const vendingMachine = await hre.ethers.deployContract("VendingMachine");
const vendingMachine = await hre.ethers.deployContract('VendingMachine');
await vendingMachine.waitForDeployment();
console.log(`Cupcake vending machine deployed to ${vendingMachine.target}`);
}
Expand Down

0 comments on commit 24d7e4b

Please sign in to comment.