ibusManager: Wrap line before dot
When chaining function calls, our coding style asks for the dot to start the new line, not end the preceding one. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/710
This commit is contained in:
parent
fc964f975a
commit
4bfee3a8ca
@ -19,8 +19,8 @@ function _checkIBusVersion(requiredMajor, requiredMinor, requiredMicro) {
|
|||||||
IBus.MICRO_VERSION >= requiredMicro))
|
IBus.MICRO_VERSION >= requiredMicro))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
throw "Found IBus version %d.%d.%d but required is %d.%d.%d".
|
throw "Found IBus version %d.%d.%d but required is %d.%d.%d"
|
||||||
format(IBus.MAJOR_VERSION, IBus.MINOR_VERSION, IBus.MINOR_VERSION,
|
.format(IBus.MAJOR_VERSION, IBus.MINOR_VERSION, IBus.MINOR_VERSION,
|
||||||
requiredMajor, requiredMinor, requiredMicro);
|
requiredMajor, requiredMinor, requiredMicro);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user