Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 60689af

Browse files
docs(tutorial/step-9): fix typo in inline link
1 parent 881fdda commit 60689af

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/content/tutorial/step_09.ngdoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ The injector only carries out the following steps:
114114

115115
* Load the module definition(s) that you specify in your application.
116116
* 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
118118
parameters to an injectable function.
119119

120120
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
127127
</div>
128128

129129
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
131131
to solve the problem of script load ordering or lazy script fetching. These goals are totally
132132
independent and both module systems can live side-by-side and fulfill their goals.
133133

@@ -228,13 +228,13 @@ application routes.
228228

229229
<div class="alert alert-success">
230230
<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
232232
hash-prefix to `!`. This prefix will appear in the links to our client-side routes, right after
233233
the hash (`#`) symbol and before the actual path (e.g. `index.html#!/some/path`).
234234
</p>
235235
<p>
236236
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.
238238
</p>
239239
</div>
240240

0 commit comments

Comments
 (0)