Merge pull request #12592 from Younghoon-Lee/Fix/style-guide

Add blank line to make it consistency
This commit is contained in:
Kamil Śliwak 2022-01-29 00:07:19 +01:00 committed by GitHub
commit f386ed28a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;