From f2b1bbaba9d7b984b7b5e5f7886d2a84fc685808 Mon Sep 17 00:00:00 2001 From: Jonathan Persson Date: Wed, 14 Sep 2016 01:13:44 +0200 Subject: [PATCH] =?UTF-8?q?Remove=20a=20superfluous=20`.`=20in=20HTTP=20cl?= =?UTF-8?q?ient=20docs=20=F0=9F=98=84=20(#2313)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/docs/ts/latest/guide/server-communication.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=".")