From d348e5051f0d788b35bd31c0f0d4c40aa0812d69 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 21 Sep 2015 12:19:51 -0700 Subject: [PATCH] docs(Type): improve api docs --- modules/angular2/src/core/facade/lang.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/angular2/src/core/facade/lang.ts b/modules/angular2/src/core/facade/lang.ts index 487e1bd39e..9ab924ef21 100644 --- a/modules/angular2/src/core/facade/lang.ts +++ b/modules/angular2/src/core/facade/lang.ts @@ -23,9 +23,10 @@ export {_global as global}; export var Type = Function; /** - * Runtime representation of a type. + * Runtime representation a type that a Component or other object is instances of. * - * In JavaScript a Type is a constructor function. + * An example of a `Type` is `MyCustomComponent` class, which in JavaScript is be represented by + * the `MyCustomComponent` constructor function. */ export interface Type extends Function { new (...args): any; }