@@ -66,7 +66,7 @@ export interface ViewDeclaration {
6666 /**
6767 * The name of the component to use for this view.
6868 *
69- * A property of [[Ng1StateDeclaration ]] or [[Ng1ViewDeclaration ]]:
69+ * A property of [[StateDeclaration ]] or [[ViewDeclaration ]]:
7070 *
7171 * The name of an [angular 1.5+ `.component()`](https://docs.angularjs.org/guide/component) (or directive with
7272 * bindToController and/or scope declaration) which will be used for this view.
@@ -119,7 +119,7 @@ export interface ViewDeclaration {
119119 /**
120120 * An object which maps `resolve`s to [[component]] `bindings`.
121121 *
122- * A property of [[Ng1StateDeclaration ]] or [[Ng1ViewDeclaration ]]:
122+ * A property of [[StateDeclaration ]] or [[ViewDeclaration ]]:
123123 *
124124 * When using a [[component]] declaration (`component: 'myComponent'`), each input binding for the component is supplied
125125 * data from a resolve of the same name, by default. You may supply data from a different resolve name by mapping it here.
@@ -162,7 +162,7 @@ export interface ViewDeclaration {
162162 /**
163163 * Dynamic component provider function.
164164 *
165- * A property of [[Ng1StateDeclaration ]] or [[Ng1ViewDeclaration ]]:
165+ * A property of [[StateDeclaration ]] or [[ViewDeclaration ]]:
166166 *
167167 * This is an injectable provider function which returns the name of the component to use.
168168 * The provider will invoked during a Transition in which the view's state is entered.
@@ -183,7 +183,7 @@ export interface ViewDeclaration {
183183 /**
184184 * The view's controller function or name
185185 *
186- * A property of [[Ng1StateDeclaration ]] or [[Ng1ViewDeclaration ]]:
186+ * A property of [[StateDeclaration ]] or [[ViewDeclaration ]]:
187187 *
188188 * The controller function, or the name of a registered controller. The controller function will be used
189189 * to control the contents of the [[directives.uiView]] directive.
@@ -197,7 +197,7 @@ export interface ViewDeclaration {
197197 /**
198198 * A controller alias name.
199199 *
200- * A property of [[Ng1StateDeclaration ]] or [[Ng1ViewDeclaration ]]:
200+ * A property of [[StateDeclaration ]] or [[ViewDeclaration ]]:
201201 *
202202 * If present, the controller will be published to scope under the `controllerAs` name.
203203 * See: https://docs.angularjs.org/api/ng/directive/ngController
@@ -206,7 +206,7 @@ export interface ViewDeclaration {
206206 /**
207207 * Dynamic controller provider function.
208208 *
209- * A property of [[Ng1StateDeclaration ]] or [[Ng1ViewDeclaration ]]:
209+ * A property of [[StateDeclaration ]] or [[ViewDeclaration ]]:
210210 *
211211 * This is an injectable provider function which returns the actual controller function, or the name
212212 * of a registered controller. The provider will invoked during a Transition in which the view's state is
@@ -231,7 +231,7 @@ export interface ViewDeclaration {
231231 /**
232232 * The scope variable name to use for resolve data.
233233 *
234- * A property of [[Ng1StateDeclaration ]] or [[Ng1ViewDeclaration ]]:
234+ * A property of [[StateDeclaration ]] or [[ViewDeclaration ]]:
235235 *
236236 * When a view is activated, the resolved data for the state which the view belongs to is put on the scope.
237237 * This property sets the name of the scope variable to use for the resolved data.
@@ -242,7 +242,7 @@ export interface ViewDeclaration {
242242 /**
243243 * The HTML template for the view.
244244 *
245- * A property of [[Ng1StateDeclaration ]] or [[Ng1ViewDeclaration ]]:
245+ * A property of [[StateDeclaration ]] or [[ViewDeclaration ]]:
246246 *
247247 * HTML template as a string, or a function which returns an html template as a string.
248248 * This template will be used to render the corresponding [[directives.uiView]] directive.
@@ -267,7 +267,7 @@ export interface ViewDeclaration {
267267 /**
268268 * The URL for the HTML template for the view.
269269 *
270- * A property of [[Ng1StateDeclaration ]] or [[Ng1ViewDeclaration ]]:
270+ * A property of [[StateDeclaration ]] or [[ViewDeclaration ]]:
271271 *
272272 * A path or a function that returns a path to an html template.
273273 * The template will be fetched and used to render the corresponding [[directives.uiView]] directive.
@@ -290,7 +290,7 @@ export interface ViewDeclaration {
290290 /**
291291 * Injected function which returns the HTML template.
292292 *
293- * A property of [[Ng1StateDeclaration ]] or [[Ng1ViewDeclaration ]]:
293+ * A property of [[StateDeclaration ]] or [[ViewDeclaration ]]:
294294 *
295295 * Injected function which returns the HTML template.
296296 * The template will be used to render the corresponding [[directives.uiView]] directive.
0 commit comments