diff --git a/public/docs/ts/latest/guide/server-communication.jade b/public/docs/ts/latest/guide/server-communication.jade index 6d56c6b43a..3f9b1f0300 100644 --- a/public/docs/ts/latest/guide/server-communication.jade +++ b/public/docs/ts/latest/guide/server-communication.jade @@ -672,7 +672,7 @@ a#in-mem-web-api Finally, redirect client HTTP requests to the in-memory web API. block redirect-to-web-api :marked - This redirection is easy to configure with the in-memory web API service module. + This redirection is easy to configure with the in-memory web API service module by adding the `InMemoryWebApiModule` to the `AppModule.imports` list. At the same time, we're calling its `forRoot` configuration method with the `HeroData` class. +makeExample('server-communication/ts/app/app.module.ts', 'in-mem-web-api')(format=".")