From bc83e26a8d0eeea4f9eef6383101dd72f5e74550 Mon Sep 17 00:00:00 2001 From: Varshith Raj Basa Date: Sun, 1 Oct 2023 10:50:01 +0530 Subject: [PATCH] fix typo "available" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23e53ca..c0af093 100644 --- a/README.md +++ b/README.md @@ -967,7 +967,7 @@ **[⬆ Back to Top](#table-of-contents)** 36. ### What is HttpClient and its benefits? - Most of the Front-end applications communicate with backend services over `HTTP` protocol using either `XMLHttpRequest` interface or the `fetch()` API. Angular provides a simplified client HTTP API known as `HttpClient` which is based on top of `XMLHttpRequest` interface. This client is avaialble from `@angular/common/http` package. + Most of the Front-end applications communicate with backend services over `HTTP` protocol using either `XMLHttpRequest` interface or the `fetch()` API. Angular provides a simplified client HTTP API known as `HttpClient` which is based on top of `XMLHttpRequest` interface. This client is available from `@angular/common/http` package. You can import in your root module as below: ```javascript