diff options
author | wbt <wbt@users.noreply.github.com> | 2017-11-30 03:21:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-30 03:21:21 +0800 |
commit | 2ebc9953e42b40995f049e95e08343e7c59098ee (patch) | |
tree | d57b586e0d066d015f02de73770c9157cf6fc03c /docs/contracts.rst | |
parent | 7c69d88f937324b64ed8825f9e611e417421434b (diff) | |
download | dexon-solidity-2ebc9953e42b40995f049e95e08343e7c59098ee.tar.gz dexon-solidity-2ebc9953e42b40995f049e95e08343e7c59098ee.tar.zst dexon-solidity-2ebc9953e42b40995f049e95e08343e7c59098ee.zip |
Minor update in contracts
Fix typos and prevent example code from needing horizontal scroll bar
Diffstat (limited to 'docs/contracts.rst')
-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) } } |