docs: fix typo in Pipes guide (aynchronous --> asynchronous) (#38996)
PR Close #38996
This commit is contained in:
parent
6ae1f198e6
commit
d1f5654f0c
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue