docs(docgen): tell dgeni to use ts files and fix some bad links

This commit is contained in:
Naomi Black
2015-06-01 21:36:06 -07:00
parent e67b7e87b2
commit b746e0c9f0
7 changed files with 28 additions and 30 deletions

View File

@ -4,8 +4,8 @@ import {ControlDirective} from './control_directive';
import {ControlValueAccessor} from './control_value_accessor';
/**
* The default accessor for writing a value and listening to changes that is used by a {@link
* Control} directive.
* The default accessor for writing a value and listening to changes that is used by a
* {@link Control} directive.
*
* This is the default strategy that Angular uses when no other accessor is applied.
*
@ -38,4 +38,4 @@ export class DefaultValueAccessor implements ControlValueAccessor {
}
registerOnChange(fn) { this.onChange = fn; }
}
}

View File

@ -4,8 +4,8 @@ import {ControlDirective} from './control_directive';
import {ControlValueAccessor} from './control_value_accessor';
/**
* The accessor for writing a value and listening to changes that is used by a {@link
* Control} directive.
* The accessor for writing a value and listening to changes that is used by a
* {@link Control} directive.
*
* This is the default strategy that Angular uses when no other accessor is applied.
*
@ -38,4 +38,4 @@ export class SelectControlValueAccessor implements ControlValueAccessor {
}
registerOnChange(fn) { this.onChange = fn; }
}
}