From 4ac76ca2813c692269211008458b71b7168592d4 Mon Sep 17 00:00:00 2001 From: Codebacca Date: Thu, 14 Jul 2016 00:26:26 +1000 Subject: [PATCH] docs(router): fix syntax in code example of comment block (#10026) --- modules/@angular/router/src/interfaces.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/@angular/router/src/interfaces.ts b/modules/@angular/router/src/interfaces.ts index c1a1f9dfb2..a2b56d3186 100644 --- a/modules/@angular/router/src/interfaces.ts +++ b/modules/@angular/router/src/interfaces.ts @@ -31,7 +31,7 @@ import {ActivatedRouteSnapshot, RouterStateSnapshot} from './router_state'; * component: Team, * canActivate: [CanActivateTeam] * }]) - * ); + * ]); * ``` * * You can also provide a function with the same signature instead of the class: @@ -45,7 +45,7 @@ import {ActivatedRouteSnapshot, RouterStateSnapshot} from './router_state'; * component: Team, * canActivate: ['canActivateTeam'] * }]) - * ); + * ]); * ``` * * @stable @@ -77,7 +77,7 @@ export interface CanActivate { * component: Team, * canDeactivate: [CanDeactivateTeam] * }]) - * ); + * ]); * ``` * * You can also provide a function with the same signature instead of the class: @@ -91,7 +91,7 @@ export interface CanActivate { * component: Team, * canActivate: ['canDeactivateTeam'] * }]) - * ); + * ]); * ``` * * @stable @@ -125,7 +125,7 @@ export interface CanDeactivate { * team: TeamResolver * } * }]) - * ); + * ]); * ``` * * You can also provide a function with the same signature instead of the class.