1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-19 04:52:13 +02:00

Merge pull request #2807 from HairyFotr/typos

[all/en] Fix a bunch of typos
This commit is contained in:
Andre Polykanine A.K.A. Menelion Elensúlë
2017-08-24 01:41:51 +03:00
committed by GitHub
47 changed files with 95 additions and 95 deletions

View File

@@ -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