aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authoruberlaufer <sebewu@gmail.com>2016-03-11 03:55:53 +0800
committeruberlaufer <sebewu@gmail.com>2016-03-11 03:55:53 +0800
commit770d509af6df4e6b932175b25400628830dc9049 (patch)
treeb04a789c93fe115794a9522959e056f3f098e531 /docs
parentec3800b28e0dac5a13710d32d8f8fca7a527c563 (diff)
downloaddexon-solidity-770d509af6df4e6b932175b25400628830dc9049.tar.gz
dexon-solidity-770d509af6df4e6b932175b25400628830dc9049.tar.zst
dexon-solidity-770d509af6df4e6b932175b25400628830dc9049.zip
Update contracts.rst
Diffstat (limited to 'docs')
-rw-r--r--docs/contracts.rst7
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