From c2c6096bec18278ab0a6a17a1014e5486a5924fe Mon Sep 17 00:00:00 2001 From: Foxandxss Date: Fri, 27 May 2016 17:12:10 +0200 Subject: [PATCH] docs(server-communication): fix anchor link closes #1537 --- 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 e24020f77c..4025466ca8 100644 --- a/public/docs/ts/latest/guide/server-communication.jade +++ b/public/docs/ts/latest/guide/server-communication.jade @@ -190,7 +190,7 @@ h2#fetch-data Fetch data with the #[b HeroService] We pass the resource URL to `get` and it calls the server which should return heroes. .l-sub-section :marked - It *will* return heroes once we've set up the [in-memory web api](in-mem-web-api) + It *will* return heroes once we've set up the [in-memory web api](#in-mem-web-api) described in the appendix below. Alternatively, we can (temporarily) target a JSON file by changing the endpoint URL: +makeExample('server-communication/ts/app/toh/hero.service.ts', 'endpoint-json')(format=".")