You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aio/content/guide/hierarchical-dependency-injection.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ The following diagram represents the relationship between the `root` `ModuleInje
132
132
While the name `root` is a special alias, other `EnvironmentInjector` hierarchies don't have aliases.
133
133
You have the option to create `EnvironmentInjector` hierarchies whenever a dynamically loaded component is created, such as with the Router, which will create child `EnvironmentInjector` hierarchies.
134
134
135
-
All requests forward up to the root injector, whether you configured it with the `ApplicationConfig` instance passed to the `boostrapApplication()` method, or registered all providers with `root` in their own services.
135
+
All requests forward up to the root injector, whether you configured it with the `ApplicationConfig` instance passed to the `bootstrapApplication()` method, or registered all providers with `root` in their own services.
Copy file name to clipboardExpand all lines: aio/content/guide/http-intercept-requests-and-responses.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ This required setting tells Angular that `HTTP_INTERCEPTORS` is a token for a *m
58
58
Because interceptors are optional dependencies of the `HttpClient` service, you must provide them in the same injector or a parent of the injector that provides `HttpClient`.
59
59
Interceptors provided *after* DI creates the `HttpClient` are ignored.
60
60
61
-
This app provides `HttpClient` in the app's root injector by adding the `HttpClientModule` to the `providers` array of the `boostrapApplication()` in `main.ts`.
61
+
This app provides `HttpClient` in the app's root injector by adding the `HttpClientModule` to the `providers` array of the `bootstrapApplication()` in `main.ts`.
Copy file name to clipboardExpand all lines: aio/content/guide/observables.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ You're more likely interested in doing something with the values. Pass in a meth
69
69
70
70
<code-exampleheader="Subscribe to emitted values"path="observables/src/subscribing.ts"region="next-param"></code-example>
71
71
72
-
Passing a `next()` function into `subcribe` is a convenient syntax for this most typical case. If you also need to know when the observable emits an error or completes, you'll have to pass in an `Observer` instead.
72
+
Passing a `next()` function into `subscribe` is a convenient syntax for this most typical case. If you also need to know when the observable emits an error or completes, you'll have to pass in an `Observer` instead.
Copy file name to clipboardExpand all lines: aio/content/tutorial/first-app/first-app-lesson-08.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Now the app has a dataset that you can use to display the entries in the browser
36
36
1. Update the `<app-housing-location>` tag in the template code to this:
37
37
<code-exampleheader="Add ngFor to HomeComponent template"path="first-app-lesson-08/src/app/home/home.component.ts"region="add-ngFor"></code-example>
38
38
39
-
Note, in the code `[housingLocation] = "housingLocation"` the `housingLocation` value now refers to the variable used in the `ngFor` directive. Before this change, it refered to the property on the `HomeComponent` class.
39
+
Note, in the code `[housingLocation] = "housingLocation"` the `housingLocation` value now refers to the variable used in the `ngFor` directive. Before this change, it referred to the property on the `HomeComponent` class.
0 commit comments