diff options
author | uberlaufer <sebewu@gmail.com> | 2016-03-11 03:55:53 +0800 |
---|---|---|
committer | uberlaufer <sebewu@gmail.com> | 2016-03-11 03:55:53 +0800 |
commit | 770d509af6df4e6b932175b25400628830dc9049 (patch) | |
tree | b04a789c93fe115794a9522959e056f3f098e531 | |
parent | ec3800b28e0dac5a13710d32d8f8fca7a527c563 (diff) | |
download | dexon-solidity-770d509af6df4e6b932175b25400628830dc9049.tar.gz dexon-solidity-770d509af6df4e6b932175b25400628830dc9049.tar.zst dexon-solidity-770d509af6df4e6b932175b25400628830dc9049.zip |
Update contracts.rst
-rw-r--r-- | docs/contracts.rst | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index fb9472a3..b2358af5 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -184,10 +184,9 @@ return parameter list for functions. uint public data; } -Other contracts can call `c.data()` to retrieve the value of -data in state storage, but are not able to call `f`. -Contracts derived from `c` can call `setData` to alter the -value of `data` (but only in their own state). +Other contracts can call `c.data()` to retrieve the value of data in state +storage, but are not able to call `f`. Contracts derived from `c` can call +`setData` to alter the value of `data` (but only in their own state). .. index:: ! accessor;function, ! function;accessor |