Merge pull request #2771 from timgates42/bugfix_typo_transition

docs: Fix simple typo, transiition -> transition
This commit is contained in:
Hakim El Hattab 2020-09-09 10:20:40 +02:00 committed by GitHub
commit 5676ef79d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -461,7 +461,7 @@ export default class AutoAnimate {
pairs.forEach( pair => { pairs.forEach( pair => {
// Disable scale transformations on text nodes, we transiition // Disable scale transformations on text nodes, we transition
// each individual text property instead // each individual text property instead
if( matches( pair.from, textNodes ) ) { if( matches( pair.from, textNodes ) ) {
pair.options = { scale: false }; pair.options = { scale: false };
@ -616,4 +616,4 @@ export default class AutoAnimate {
} }
} }