Skip to content

Commit 4d57694

Browse files
committed
refactor(core/bus): rename parameter
1 parent 959112f commit 4d57694

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/bus/bus.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ export class Bus {
3535
share(),
3636
)
3737

38-
setControl(lines: Partial<ControlLines>): void {
38+
setControl(signals: Partial<ControlLines>): void {
3939
const control = this.control$.getValue()
40-
this.control$.next(Object.assign(control, lines))
40+
this.control$.next(Object.assign(control, signals))
4141
}
4242
}

0 commit comments

Comments
 (0)