@@ -114,7 +114,7 @@ The injector only carries out the following steps:
114
114
115
115
* Load the module definition(s) that you specify in your application.
116
116
* Register all Providers defined in these module definition(s).
117
- * When asked to do so, lazily instantiate services and their dependencies, via their Providers, as
117
+ * When asked to do so, lazily instantiate services and their dependencies, via their Providers, as
118
118
parameters to an injectable function.
119
119
120
120
Providers are objects that provide (create) instances of services and expose configuration APIs,
@@ -127,7 +127,7 @@ service, the `$routeProvider` exposes APIs that allow you to define routes for y
127
127
</div>
128
128
129
129
Angular modules solve the problem of removing global variables from the application and provide a
130
- way of configuring the injector. As opposed to AMD or require.js modules, Angular modules don't try
130
+ way of configuring the injector. As opposed to AMD or require.js modules, Angular modules don't try
131
131
to solve the problem of script load ordering or lazy script fetching. These goals are totally
132
132
independent and both module systems can live side-by-side and fulfill their goals.
133
133
@@ -228,13 +228,13 @@ application routes.
228
228
229
229
<div class="alert alert-success">
230
230
<p>
231
- We also used {@ink $locationProvider#hashPrefix $locationProvider.hashPrefix()} to set the
231
+ We also used {@link $locationProvider#hashPrefix $locationProvider.hashPrefix()} to set the
232
232
hash-prefix to `!`. This prefix will appear in the links to our client-side routes, right after
233
233
the hash (`#`) symbol and before the actual path (e.g. `index.html#!/some/path`).
234
234
</p>
235
235
<p>
236
236
Setting a prefix is not necessary, but it is considered a good practice (for reasons that are
237
- outside the scope of this tutorial). `!` is the most commonly used prefix.
237
+ outside the scope of this tutorial). `!` is the most commonly used prefix.
238
238
</p>
239
239
</div>
240
240
0 commit comments