From 128915d6c306a6195e761fd7881335911e5538ee Mon Sep 17 00:00:00 2001 From: Trotyl Yu Date: Sat, 13 Aug 2016 19:41:06 +0800 Subject: [PATCH] docs(server-communication): Fetch API does not belong to ECMAScript closes #2107 Fetch API is a Web API, has its own specification. ECMAScript is the specification of the JavaScript language, nothing to do with Web API. --- 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 6c899f01e9..54dda5372a 100644 --- a/public/docs/ts/latest/guide/server-communication.jade +++ b/public/docs/ts/latest/guide/server-communication.jade @@ -265,7 +265,7 @@ block parse-json .l-sub-section :marked This is not Angular's own design. - The Angular HTTP client follows the ES2015 specification for the + The Angular HTTP client follows the Fetch specification for the [response object](https://fetch.spec.whatwg.org/#response-class) returned by the `Fetch` function. That spec defines a `json()` method that parses the response body into a JavaScript object.