From 770d509af6df4e6b932175b25400628830dc9049 Mon Sep 17 00:00:00 2001
From: uberlaufer <sebewu@gmail.com>
Date: Thu, 10 Mar 2016 20:55:53 +0100
Subject: [PATCH] Update contracts.rst

---
 docs/contracts.rst | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/docs/contracts.rst b/docs/contracts.rst
index fb9472a31..b2358af59 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