Skip to content

Commit

Permalink
Update removing-effect-dependencies.md
Browse files Browse the repository at this point in the history
  • Loading branch information
carburo authored Oct 15, 2024
1 parent f9ae1e9 commit 1d331e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/learn/removing-effect-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,7 @@ export class FadeInAnimation {
const progress = Math.min(timePassed / this.duration, 1);
this.onProgress(progress);
if (progress < 1) {
// Todavía nos quedan más marcos por pintar
// Todavía nos quedan más fotogramas por pintar
this.frameId = requestAnimationFrame(() => this.onFrame());
}
}
Expand Down Expand Up @@ -1480,7 +1480,7 @@ export class FadeInAnimation {
const progress = Math.min(timePassed / this.duration, 1);
this.onProgress(progress);
if (progress < 1) {
// Todavía nos quedan más marcos por pintar
// Todavía nos quedan más fotogramas por pintar
this.frameId = requestAnimationFrame(() => this.onFrame());
}
}
Expand Down

0 comments on commit 1d331e5

Please sign in to comment.