From c52fd3e51fa2e12a1f941cb6e8c64f5312930877 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Thu, 16 May 2019 18:17:49 +0300 Subject: [PATCH] Fix typo --- 7-animation/3-js-animation/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-animation/3-js-animation/article.md b/7-animation/3-js-animation/article.md index 0975ebff..63e87e26 100644 --- a/7-animation/3-js-animation/article.md +++ b/7-animation/3-js-animation/article.md @@ -55,7 +55,7 @@ Let's imagine we have several animations running simultaneously. If we run them separately, then even though each one has `setInterval(..., 20)`, then the browser would have to repaint much more often than every `20ms`. -That's because they have different starting time, so "every 20ms" differs between different animations. The intervals are not alignned. So we'll have several independent runs within `20ms`. +That's because they have different starting time, so "every 20ms" differs between different animations. The intervals are not aligned. So we'll have several independent runs within `20ms`. In other words, this: