diff options
author | HairyFotr <hairyfotr@gmail.com> | 2017-08-23 10:14:39 +0200 |
---|---|---|
committer | HairyFotr <hairyfotr@gmail.com> | 2017-08-23 10:14:39 +0200 |
commit | 985d23a52b76593a120adff5381c2df3a80fe298 (patch) | |
tree | 0eeec5a7b13a110e18f319d1fe1c4568b68385a7 /solidity.html.markdown | |
parent | 9c5a67ca0f3c989ef31141f83d64fba10b93b059 (diff) |
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 602d74f0..a501befd 100644 --- a/solidity.html.markdown +++ b/solidity.html.markdown @@ -188,7 +188,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; @@ -484,7 +484,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 } } } @@ -804,7 +804,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 |