From 47229fa87b74f08764194e3f401a1cbb3660cced Mon Sep 17 00:00:00 2001 From: Michael Huang Date: Tue, 10 Apr 2018 23:36:28 +1000 Subject: [PATCH] docs(aio): update text InMemoryWebApiModule to HttpClientInMemoryWebApiModule (#23285) PR Close #23285 --- aio/content/tutorial/toh-pt6.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/tutorial/toh-pt6.md b/aio/content/tutorial/toh-pt6.md index ab845893ad..a9b07e2bb5 100644 --- a/aio/content/tutorial/toh-pt6.md +++ b/aio/content/tutorial/toh-pt6.md @@ -51,7 +51,7 @@ Install the *In-memory Web API* package from _npm_. npm install angular-in-memory-web-api@0.5 --save -Import the `InMemoryWebApiModule` and the `InMemoryDataService` class, +Import the `HttpClientInMemoryWebApiModule` and the `InMemoryDataService` class, which you will create in a moment. -Add the `InMemoryWebApiModule` to the `@NgModule.imports` array— +Add the `HttpClientInMemoryWebApiModule` to the `@NgModule.imports` array— _after importing the `HttpClient`_, —while configuring it with the `InMemoryDataService`.