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 4acd322128
commit 591dcc26af

View File

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