From d111ad187f09a04bb89489e9e7f474ac76598152 Mon Sep 17 00:00:00 2001 From: rtabulov Date: Tue, 2 Mar 2021 15:41:12 +0600 Subject: [PATCH] fix: good practices - spelling mistake --- subjects/good-practices/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/good-practices/README.md b/subjects/good-practices/README.md index 9d3625a66..d30ae6dd6 100644 --- a/subjects/good-practices/README.md +++ b/subjects/good-practices/README.md @@ -84,7 +84,7 @@ It is possible to remove painting by adding a layer: } ``` -By creating a new layer you can remove painting, but "there is always a tradeoff". If we add to much layers it will increase the **composition** and **update tree**. In conclusion you must promote a new layer only if you now you are going to use it. Performance is the key to a good animation. "Performance is the art of avoiding work". +By creating a new layer you can remove painting, but "there is always a tradeoff". If we add to much layers it will increase the **composition** and **update tree**. In conclusion you must promote a new layer only if you know you are going to use it. Performance is the key to a good animation. "Performance is the art of avoiding work". ### UI/UX