diff options
author | Andre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org> | 2017-08-24 01:41:51 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-24 01:41:51 +0300 |
commit | 2694c89c3322b730b5635960e893323aa6524114 (patch) | |
tree | e910f541ae5e55042990459d029404c148ba1051 /solidity.html.markdown | |
parent | 1058ecc7d4d966788e5d963caf9f8c27dd2ac330 (diff) | |
parent | 985d23a52b76593a120adff5381c2df3a80fe298 (diff) |
Merge pull request #2807 from HairyFotr/typos
[all/en] Fix a bunch of typos
Diffstat (limited to 'solidity.html.markdown')
-rw-r--r-- | solidity.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/solidity.html.markdown b/solidity.html.markdown index d9b33ed4..fc54d6e4 100644 --- a/solidity.html.markdown +++ b/solidity.html.markdown @@ -191,7 +191,7 @@ string n = "hello"; // stored in UTF8, note double quotes, not single // string utility functions to be added in future // prefer bytes32/bytes, as UTF8 uses more storage -// Type inferrence +// Type inference // var does inferred typing based on first assignment, // can't be used in functions parameters var a = true; @@ -487,7 +487,7 @@ contract MyContract is abc, def("a custom argument to def") { function z() { if (msg.sender == owner) { def.z(); // call overridden function from def - super.z(); // call immediate parent overriden function + super.z(); // call immediate parent overridden function } } } @@ -807,7 +807,7 @@ someContractAddress.callcode('function_name'); // else should be placed on own line -// 14. NATSPEC COMENTS +// 14. NATSPEC COMMENTS // used for documentation, commenting, and external UIs // Contract natspec - always above contract definition |