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
+6
View File
@@ -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;