docs: remove extra parenthesis from inline animations snippet (#32735)

PR Close #32735
This commit is contained in:
Pascal Fivian 2019-09-25 19:39:34 +02:00 committed by Andrew Kushnir
parent 0ea4875b10
commit e9867e8ae1

View File

@ -707,7 +707,7 @@ export function group(
* *
* ```typescript * ```typescript
* sequence([ * sequence([
* style({ opacity: 0 })), * style({ opacity: 0 }),
* animate("1s", style({ opacity: 1 })) * animate("1s", style({ opacity: 1 }))
* ]) * ])
* ``` * ```