From 3a801c16fae12cb4391a51c6e0f29c7364eccd0f Mon Sep 17 00:00:00 2001 From: Alex Rickabaugh Date: Tue, 13 Oct 2015 00:06:39 -0700 Subject: [PATCH] fix(docs): minor @link fixes. Closes #4696 --- modules/angular2/src/core/application_ref.ts | 2 +- modules/angular2/src/core/forms/directives/ng_form.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/angular2/src/core/application_ref.ts b/modules/angular2/src/core/application_ref.ts index 71211205f7..30bb9ecbdb 100644 --- a/modules/angular2/src/core/application_ref.ts +++ b/modules/angular2/src/core/application_ref.ts @@ -194,7 +194,7 @@ export abstract class PlatformRef { * # Usage * * `bindingFn` is a function that will be called in the new application's zone. - * It should return a {@link Promise} to a list of providers to be used for the + * It should return a `Promise` to a list of providers to be used for the * new application. Once this promise resolves, the application will be * constructed in the same manner as a normal `application()`. */ diff --git a/modules/angular2/src/core/forms/directives/ng_form.ts b/modules/angular2/src/core/forms/directives/ng_form.ts index 4d52d14621..e7c13f02a3 100644 --- a/modules/angular2/src/core/forms/directives/ng_form.ts +++ b/modules/angular2/src/core/forms/directives/ng_form.ts @@ -29,9 +29,9 @@ const formDirectiveProvider = * * # Structure * - * An Angular form is a collection of {@link Control}s in some hierarchy. - * `Control`s can be at the top level or can be organized in {@link ControlGroup}s - * or {@link ControlArray}s. This hierarchy is reflected in the form's `value`, a + * An Angular form is a collection of `Control`s in some hierarchy. + * `Control`s can be at the top level or can be organized in `ControlGroup`s + * or `ControlArray`s. This hierarchy is reflected in the form's `value`, a * JSON object that mirrors the form structure. * * # Submission