chore: naming

This commit is contained in:
cha0s 2019-05-10 02:33:03 -05:00
parent e90755fc01
commit 2ccd527884

View File

@ -20,7 +20,7 @@ export function Synchronized(Superclass) {
this._childrenTickers = [];
}
ensureChildrenAreSynchronized() {
ensureSynchronizedChildren() {
if (!this._childrenNeedInitialization) {
return;
}
@ -89,7 +89,7 @@ export function Synchronized(Superclass) {
}
tickSynchronized(elapsed) {
this.ensureChildrenAreSynchronized();
this.ensureSynchronizedChildren();
for (let i = 0; i < this._childrenTickers.length; ++i) {
this._childrenTickers[i](elapsed);
}