Merge pull request #3259 from wbt/patch-1

Minor update in contracts
This commit is contained in:
Alex Beregszaszi 2017-11-29 20:01:09 +00:00 committed by GitHub
commit aebf72c2c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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