From c58e460ba2aad998568168dd954a29e858d27ff2 Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Thu, 11 Aug 2016 16:53:07 -0400 Subject: Change example code formatting --- docs/layout-of-source-files.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/layout-of-source-files.rst b/docs/layout-of-source-files.rst index b3436576..6ef06961 100644 --- a/docs/layout-of-source-files.rst +++ b/docs/layout-of-source-files.rst @@ -171,9 +171,9 @@ for the two input parameters and two returned values. * @return s The calculated surface. * @return p The calculated perimeter. */ - function rectangle(uint w, uint h) returns (uint s, uint p){ - s = w*h; - p = 2*(w+h); + function rectangle(uint w, uint h) returns (uint s, uint p) { + s = w * h; + p = 2 * (w + h); } } -- cgit v1.2.3