From 76e1f863a2d9c30a2ee48f521c091ccd78b64cce Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Sun, 30 Aug 2015 20:16:40 -0700 Subject: [PATCH] docs(router): add description for Url class --- modules/angular2/src/router/url_parser.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/angular2/src/router/url_parser.ts b/modules/angular2/src/router/url_parser.ts index f8a39e7fa7..ec54a34657 100644 --- a/modules/angular2/src/router/url_parser.ts +++ b/modules/angular2/src/router/url_parser.ts @@ -7,7 +7,9 @@ import { CONST_EXPR } from 'angular2/src/core/facade/lang'; - +/** + * This class represents a parsed URL + */ export class Url { constructor(public path: string, public child: Url = null, public auxiliary: List = CONST_EXPR([]),