aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-11-30 04:01:09 +0800
committerGitHub <noreply@github.com>2017-11-30 04:01:09 +0800
commitaebf72c2c5315674af18e6016b6c85ce0e63fb31 (patch)
treed57b586e0d066d015f02de73770c9157cf6fc03c
parent7c69d88f937324b64ed8825f9e611e417421434b (diff)
parent2ebc9953e42b40995f049e95e08343e7c59098ee (diff)
downloaddexon-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.rst2
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)
}
}