From 622a5b059877bcedd85d346a26e64eeec347ee58 Mon Sep 17 00:00:00 2001 From: Francesco Ceccon Date: Sun, 26 Nov 2017 17:15:58 +0000 Subject: [PATCH] Fix spelling in callcode and delegatecall warnings --- remix-solidity/src/analysis/modules/lowLevelCalls.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/remix-solidity/src/analysis/modules/lowLevelCalls.js b/remix-solidity/src/analysis/modules/lowLevelCalls.js index 0bf8672923..6e8dd0a352 100644 --- a/remix-solidity/src/analysis/modules/lowLevelCalls.js +++ b/remix-solidity/src/analysis/modules/lowLevelCalls.js @@ -33,14 +33,14 @@ lowLevelCalls.prototype.report = function (compilationResults) { break case common.lowLevelCallTypes.CALLCODE: text = `use of "callcode": the use of low level "callcode" should be avoided whenever possible. - External code that is called can change the state of the calling contract and send ether form the caller's balance. - If this is wantend behaviour use the Solidity library feature if possible.` + External code that is called can change the state of the calling contract and send ether from the caller's balance. + If this is wanted behaviour use the Solidity library feature if possible.` morehref = 'http://solidity.readthedocs.io/en/develop/contracts.html#libraries' break case common.lowLevelCallTypes.DELEGATECALL: text = `use of "delegatecall": the use of low level "delegatecall" should be avoided whenever possible. - External code that is called can change the state of the calling contract and send ether form the caller's balance. - If this is wantend behaviour use the Solidity library feature if possible.` + External code that is called can change the state of the calling contract and send ether from the caller's balance. + If this is wanted behaviour use the Solidity library feature if possible.` morehref = 'http://solidity.readthedocs.io/en/develop/contracts.html#libraries' break case common.lowLevelCallTypes.SEND: