aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
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