From d1f5654f0c35c683ddcc49e0ac59b83f15cfb9fe Mon Sep 17 00:00:00 2001 From: Aleksandr Maniunin Date: Fri, 25 Sep 2020 22:14:05 +0700 Subject: [PATCH] docs: fix typo in Pipes guide (aynchronous --> asynchronous) (#38996) PR Close #38996 --- aio/content/guide/pipes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/pipes.md b/aio/content/guide/pipes.md index 0d28ab4aa4..7a49dabffa 100644 --- a/aio/content/guide/pipes.md +++ b/aio/content/guide/pipes.md @@ -397,7 +397,7 @@ The following code example binds an observable of message strings ## Caching HTTP requests To [communicate with backend services using HTTP](/guide/http "Communicating with backend services using HTTP"), the `HttpClient` service uses observables and offers the `HTTPClient.get()` method to fetch data from a server. -The aynchronous method sends an HTTP request, and returns an observable that emits the requested data for the response. +The asynchronous method sends an HTTP request, and returns an observable that emits the requested data for the response. As shown in the previous section, you can use the impure `AsyncPipe` to accept an observable as input and subscribe to the input automatically. You can also create an impure pipe to make and cache an HTTP request.