diff options
Diffstat (limited to 'docs')
-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) } } |