diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-11-30 04:01:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-30 04:01:09 +0800 |
commit | aebf72c2c5315674af18e6016b6c85ce0e63fb31 (patch) | |
tree | d57b586e0d066d015f02de73770c9157cf6fc03c | |
parent | 7c69d88f937324b64ed8825f9e611e417421434b (diff) | |
parent | 2ebc9953e42b40995f049e95e08343e7c59098ee (diff) | |
download | dexon-solidity-aebf72c2c5315674af18e6016b6c85ce0e63fb31.tar dexon-solidity-aebf72c2c5315674af18e6016b6c85ce0e63fb31.tar.gz dexon-solidity-aebf72c2c5315674af18e6016b6c85ce0e63fb31.tar.bz2 dexon-solidity-aebf72c2c5315674af18e6016b6c85ce0e63fb31.tar.lz dexon-solidity-aebf72c2c5315674af18e6016b6c85ce0e63fb31.tar.xz dexon-solidity-aebf72c2c5315674af18e6016b6c85ce0e63fb31.tar.zst dexon-solidity-aebf72c2c5315674af18e6016b6c85ce0e63fb31.zip |
Merge pull request #3259 from wbt/patch-1
Minor update in contracts
-rw-r--r-- | docs/contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index ef1e1be6..2b0956bb 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -211,7 +211,7 @@ In the following example, ``D``, can call ``c.getData()`` to retrieve the value contract E is C { function g() { C c = new C(); - uint val = compute(3, 5); // acces to internal member (from derivated to parent contract) + uint val = compute(3, 5); // access to internal member (from derived to parent contract) } } |