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
1 changed files with 1 additions and 1 deletions

View File

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