From 5d7359e3f06cedc16ca4d3c9fcd6c0a28acbb19f Mon Sep 17 00:00:00 2001 From: dario-piotrowicz Date: Sat, 17 Jul 2021 10:53:26 +0100 Subject: [PATCH] refactor(animations): fix typo in transition animations spec file (#42763) fix the typo "mean't" in the transition_animation_engine spec file to "meant" (the typo is simply in a code comment so the change does not have any impact) PR Close #42763 --- .../browser/test/render/transition_animation_engine_spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/animations/browser/test/render/transition_animation_engine_spec.ts b/packages/animations/browser/test/render/transition_animation_engine_spec.ts index 39ba85e8da..ebc1e66a12 100644 --- a/packages/animations/browser/test/render/transition_animation_engine_spec.ts +++ b/packages/animations/browser/test/render/transition_animation_engine_spec.ts @@ -20,7 +20,7 @@ const DEFAULT_NAMESPACE_ID = 'id'; (function() { const driver = new MockAnimationDriver(); -// these tests are only mean't to be run within the DOM +// these tests are only meant to be run within the DOM if (isNode) return; describe('TransitionAnimationEngine', () => {