docs(animations): fixed some closing brackets on query animation page (#29854) (#29855)

PR Close #29855
This commit is contained in:
Kevin Newman 2019-04-11 21:19:09 -04:00 committed by Ben Lesh
parent d1b7d36646
commit 22294dfad1
1 changed files with 2 additions and 2 deletions

View File

@ -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 }))),
* ])
* ])
* ]