mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #12592 from Younghoon-Lee/Fix/style-guide
Add blank line to make it consistency
This commit is contained in:
commit
f386ed28a0
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user