docs(animations): a small typo (#37164)

Removed two extra closing parentheses in docs.
PR Close #37164
This commit is contained in:
Kalle Järvenpää 2020-05-17 20:04:45 +03:00 committed by Misko Hevery
parent fbfc7dff48
commit 5a2a907adf
1 changed files with 2 additions and 2 deletions

View File

@ -652,8 +652,8 @@ export function trigger(name: string, definitions: AnimationMetadata[]): Animati
* ```typescript
* animate(500, keyframes(
* [
* style({ background: "blue" })),
* style({ background: "red" }))
* style({ background: "blue" }),
* style({ background: "red" })
* ])
* ```
*