From 95f9289f2ced419639478821618f962041ac9599 Mon Sep 17 00:00:00 2001 From: Younghoon-Lee <8109h@naver.com> Date: Fri, 28 Jan 2022 01:11:35 +0900 Subject: [PATCH] Add blank line to make it consistency --- docs/style-guide.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/style-guide.rst b/docs/style-guide.rst index 177f4a798..1bbe6cc74 100644 --- a/docs/style-guide.rst +++ b/docs/style-guide.rst @@ -281,6 +281,7 @@ Yes: // ... } + contract B is Owned { // ... } @@ -846,15 +847,20 @@ Yes: constructor(uint) { } } + + contract C { constructor(uint, uint) { } } + + contract D { constructor(uint) { } } + contract A is B, C, D { uint x;