docs: Indicate `HttpClientModule` being imported (#41749)

PR Close #41749
This commit is contained in:
Sam Severance 2021-04-21 11:00:26 -04:00 committed by Jessica Janiuk
parent 50713310bf
commit 9f88da220c
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ Make `HttpClient` available everywhere in the application in two steps. First, a
<code-example path="toh-pt6/src/app/app.module.ts" region="import-http-client" header="src/app/app.module.ts (HttpClientModule import)">
</code-example>
Next, still in the `AppModule`, add `HttpClient` to the `imports` array:
Next, still in the `AppModule`, add `HttpClientModule` to the `imports` array:
<code-example path="toh-pt6/src/app/app.module.ts" region="import-httpclientmodule" header="src/app/app.module.ts (imports array excerpt)">
</code-example>