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 {
|
||||
// ...
|
||||
}
|
||||
@ -846,15 +847,20 @@ Yes:
|
||||
constructor(uint) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
contract C {
|
||||
constructor(uint, uint) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
contract D {
|
||||
constructor(uint) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
contract A is B, C, D {
|
||||
uint x;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user