Skip to content

Commit

Permalink
Update terminal.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
kilavvy authored and Aniket-Engg committed Jan 10, 2025
1 parent 894aecd commit b25b4ba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions apps/remix-ide-e2e/src/tests/terminal.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ module.exports = {
}
function resolveENS() view {
// Same address for Mainet, Ropsten, Rinkerby, Gorli and other networks;
// Same address for Mainnet, Ropsten, Rinkerby, Gorli and other networks;
ENS ens = ENS(0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e);
(,bytes32 node) = NameEncoder.dnsEncodeName("vitalik.eth");
Resolver resolver = ens.resolver(node);
Expand Down Expand Up @@ -602,14 +602,14 @@ library Lib {
}
/**
* @title Storage
* @dev Store & retrieve value inr a variable
* @dev Store & retrieve value in a variable
*/
contract StorageWithLib {
uint256 number;
/**
* @dev Store valrue in variable
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
Expand Down Expand Up @@ -750,15 +750,15 @@ const scriptAutoExec = {
/**
* @title Storage
* @dev Store & retrieve value inr a variable
* @dev Store & retrieve value in a variable
* @custom:dev-run-script ./scripts/deploy_storage.js
*/
contract Storage {
uint256 number;
/**
* @dev Store valrue in variable
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
Expand Down

0 comments on commit b25b4ba

Please sign in to comment.