From 22294dfad195c2de9ca4b81753dc2fc8a3995dde Mon Sep 17 00:00:00 2001 From: Kevin Newman Date: Thu, 11 Apr 2019 21:19:09 -0400 Subject: [PATCH] docs(animations): fixed some closing brackets on query animation page (#29854) (#29855) PR Close #29855 --- packages/animations/src/animation_metadata.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/animations/src/animation_metadata.ts b/packages/animations/src/animation_metadata.ts index 09a779a909..cc85b3d637 100755 --- a/packages/animations/src/animation_metadata.ts +++ b/packages/animations/src/animation_metadata.ts @@ -1200,8 +1200,8 @@ export function useAnimation( * query('.content', style({ opacity: 0 })), * * // animate the inner elements in, one by one - * query('h1', animate(1000, style({ opacity: 1 })), - * query('.content', animate(1000, style({ opacity: 1 })), + * query('h1', animate(1000, style({ opacity: 1 }))), + * query('.content', animate(1000, style({ opacity: 1 }))), * ]) * ]) * ]