docs: fix broken links (#2950)

This commit is contained in:
Patrice Chalin 2016-12-07 14:43:43 -08:00 committed by Kathy Walrath
parent a4ecdd2be1
commit 9aececb65c
4 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ block annotation-defn
details. details.
The corresponding term in TypeScript and JavaScript is The corresponding term in TypeScript and JavaScript is
[_decorator_](!{docsPath}/ts/latest/glossary.html#decorator). [_decorator_](https://angular.io/docs/ts/latest/glossary.html#decorator).
[metadata]: https://www.dartlang.org/guides/language/language-tour#metadata [metadata]: https://www.dartlang.org/guides/language/language-tour#metadata

View File

@ -39,7 +39,7 @@ block ngmodule-vs-component
But its child `HeroListComponent` does, so we head there next. But its child `HeroListComponent` does, so we head there next.
block injectable-not-always-needed-in-ts block injectable-not-always-needed-in-ts
//- The [Angular Dart Transformer](https://github.com/angular/angular/wiki/Angular-2-Dart-Transformer) //- The [Angular Dart Transformer](https://github.com/dart-lang/angular2/wiki/Transformer)
//- generates static code to replace the use of dart:mirrors. It requires that types be //- generates static code to replace the use of dart:mirrors. It requires that types be
//- identified as targets for static code generation. Generally this is achieved //- identified as targets for static code generation. Generally this is achieved
//- by marking the class as @Injectable (though there are other mechanisms). //- by marking the class as @Injectable (though there are other mechanisms).

View File

@ -25,7 +25,7 @@ block http-providers
for DI, we must add a `resolved_identifiers` parameter to the `angular2` for DI, we must add a `resolved_identifiers` parameter to the `angular2`
transformer in `pubspec.yaml`: transformer in `pubspec.yaml`:
[ng2dtri]: https://github.com/angular/angular/wiki/Angular-2-Dart-Transformer#resolved_identifiers [ng2dtri]: https://github.com/dart-lang/angular2/wiki/Transformer#resolved_identifiers
- var stylePattern = { pnk: /(resolved_identifiers:|Browser.*)/gm, otl: /(- angular2:)|(transformers:)/g }; - var stylePattern = { pnk: /(resolved_identifiers:|Browser.*)/gm, otl: /(- angular2:)|(transformers:)/g };
+makeExcerpt('pubspec.yaml', 'transformers', null, stylePattern) +makeExcerpt('pubspec.yaml', 'transformers', null, stylePattern)

View File

@ -185,7 +185,7 @@ a#aot
Angular has a rich data binding framework with a variety of data binding Angular has a rich data binding framework with a variety of data binding
operations and supporting declaration syntax. operations and supporting declaration syntax.
Read about the forms of binding in the [Template Syntax](!{docsLatest}/guide/template-syntax.html#data-binding) page: Read about the forms of binding in the [Template Syntax](!{docsLatest}/guide/template-syntax.html) page:
* [Interpolation](!{docsLatest}/guide/template-syntax.html#interpolation). * [Interpolation](!{docsLatest}/guide/template-syntax.html#interpolation).
* [Property binding](!{docsLatest}/guide/template-syntax.html#property-binding). * [Property binding](!{docsLatest}/guide/template-syntax.html#property-binding).
* [Event binding](!{docsLatest}/guide/template-syntax.html#event-binding). * [Event binding](!{docsLatest}/guide/template-syntax.html#event-binding).