Add blank line to make it consistency

This commit is contained in:
Younghoon-Lee 2022-01-28 01:11:35 +09:00
parent 597426bd1c
commit 95f9289f2c

View File

@ -281,6 +281,7 @@ Yes:
// ... // ...
} }
contract B is Owned { contract B is Owned {
// ... // ...
} }
@ -846,15 +847,20 @@ Yes:
constructor(uint) { constructor(uint) {
} }
} }
contract C { contract C {
constructor(uint, uint) { constructor(uint, uint) {
} }
} }
contract D { contract D {
constructor(uint) { constructor(uint) {
} }
} }
contract A is B, C, D { contract A is B, C, D {
uint x; uint x;