diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2023-04-05 13:42:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 13:42:41 +0200 |
commit | 770ca58d58bcb48a52367e9a340ab06c0053f1d5 (patch) | |
tree | 6d60e71adf69fdb7b59534d4a2d4137d5d124a88 /src/animation/Timeline.js | |
parent | d8ce1aec598e36457c0bb7e923cf5642420ceb86 (diff) | |
parent | d3630aa69816e78a274e5b18dd1e027aa8a7e6ec (diff) | |
download | svg.js-770ca58d58bcb48a52367e9a340ab06c0053f1d5.tar.gz svg.js-770ca58d58bcb48a52367e9a340ab06c0053f1d5.zip |
Merge pull request #1294 from timgates42/bugfix_typos
docs: Fix a few typos
Diffstat (limited to 'src/animation/Timeline.js')
-rw-r--r-- | src/animation/Timeline.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/animation/Timeline.js b/src/animation/Timeline.js index 928c334..387b59b 100644 --- a/src/animation/Timeline.js +++ b/src/animation/Timeline.js @@ -243,12 +243,12 @@ export default class Timeline extends EventTarget { // the runner to position 0 // FIXME: - // However, reseting in insertion order leads to bugs. Considering the case, + // However, resetting in insertion order leads to bugs. Considering the case, // where 2 runners change the same attribute but in different times, - // reseting both of them will lead to the case where the later defined + // resetting both of them will lead to the case where the later defined // runner always wins the reset even if the other runner started earlier // and therefore should win the attribute battle - // this can be solved by reseting them backwards + // this can be solved by resetting them backwards for (let k = this._runners.length; k--;) { // Get and run the current runner and ignore it if its inactive const runnerInfo = this._runners[k] |