From ecb9c70397c9e0218fe0f6430f30bfe64e3e8344 Mon Sep 17 00:00:00 2001 From: zhusir Date: Fri, 22 May 2020 15:22:34 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E7=BF=BB=E8=AF=91=E6=94=B9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aio/content/guide/http.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/http.md b/aio/content/guide/http.md index 6b8772d50b..0cc4394549 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -654,7 +654,7 @@ Execution of the HTTP request is _deferred_, allowing you to extend the observable with additional operations such as `tap` and `catchError` before anything actually happens. `HttpClient` 的所有方法返回的可观察对象都设计为*冷的*。 -HTTP 请求的执行都是*延期执行的*,让你可以用 `tap` 和 `catchError` 这样的操作符来在实际执行什么之前,先对这个可观察对象进行扩展。 +HTTP 请求的执行都是*延期执行的*,让你可以用 `tap` 和 `catchError` 这样的操作符来在实际执行HTTP请求之前,先对这个可观察对象进行扩展。 Calling `subscribe(...)` triggers execution of the observable and causes `HttpClient` to compose and send the HTTP request to the server.