From 1249a70a39eee8c30738d4b476e60f0ec53a0d3c Mon Sep 17 00:00:00 2001 From: Cory Forsyth Date: Sun, 14 Jan 2018 15:57:16 -0500 Subject: [PATCH] Fix typo in selfdestruct.js: planed -> planned Small typo fix --- remix-solidity/src/analysis/modules/selfdestruct.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remix-solidity/src/analysis/modules/selfdestruct.js b/remix-solidity/src/analysis/modules/selfdestruct.js index 967becde1e..14b24f9e3c 100644 --- a/remix-solidity/src/analysis/modules/selfdestruct.js +++ b/remix-solidity/src/analysis/modules/selfdestruct.js @@ -16,7 +16,7 @@ selfdestruct.prototype.visit = function (node) { selfdestruct.prototype.report = function () { return this.relevantNodes.map(function (item, i) { return { - warning: 'Use of selfdestruct: can block calling contracts unexpectedly. Be especially careful if this contract is planed to be used by other contracts (i.e. library contracts, interactions). Selfdestruction of the callee contract can leave callers in an inoperable state.', + warning: 'Use of selfdestruct: can block calling contracts unexpectedly. Be especially careful if this contract is planned to be used by other contracts (i.e. library contracts, interactions). Selfdestruction of the callee contract can leave callers in an inoperable state.', location: item.src, more: 'https://paritytech.io/blog/security-alert.html' }