docs(animations): add missing bracket to fadeAnimation

Closes #18899
This commit is contained in:
Casey Schroeder 2017-09-29 08:58:20 -04:00 committed by Tobias Bosch
parent 02394d2d80
commit e81d1fc361
1 changed files with 1 additions and 1 deletions

View File

@ -853,7 +853,7 @@ export function transition(
* var fadeAnimation = animation([
* style({ opacity: '{{ start }}' }),
* animate('{{ time }}',
* style({ opacity: '{{ end }}'))
* style({ opacity: '{{ end }}'}))
* ], { params: { time: '1000ms', start: 0, end: 1 }});
* ```
*