From 233b4d0f04b465baf4c0ee0c6f264e9759b18e8f Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 12 Apr 2022 15:38:06 +0200 Subject: [PATCH] fix label --- libs/remix-ui/workspace/src/lib/templates/examples.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/remix-ui/workspace/src/lib/templates/examples.ts b/libs/remix-ui/workspace/src/lib/templates/examples.ts index c01faed79f..dafe736504 100644 --- a/libs/remix-ui/workspace/src/lib/templates/examples.ts +++ b/libs/remix-ui/workspace/src/lib/templates/examples.ts @@ -259,7 +259,7 @@ contract BallotTest { const deployWithWeb3 = ` // This script can be used to deploy the "Storage" contract using Web3 library. // Please make sure to compile "./contracts/1_Storage.sol" file before running this script. -// And Right click -> "Run" from context menu of the file to run the script. Shortcut: Ctrl+Shift+S +// And use Right click -> "Run" from context menu of the file to run the script. Shortcut: Ctrl+Shift+S import { deploy } from './web3.ts' @@ -276,7 +276,7 @@ import { deploy } from './web3.ts' const deployWithEthers = ` // This script can be used to deploy the "Storage" contract using ethers.js library. // Please make sure to compile "./contracts/1_Storage.sol" file before running this script. -// And Right click -> "Run" from context menu of the file to run the script. Shortcut: Ctrl+Shift+S +// And use Right click -> "Run" from context menu of the file to run the script. Shortcut: Ctrl+Shift+S import { deploy } from './ethers.ts'