From 2711ef6fc4b5fbbe6551a3952d475c05497a7696 Mon Sep 17 00:00:00 2001 From: Brandon Jones Date: Mon, 1 Jan 2024 17:07:44 -0700 Subject: [PATCH] chore: fix http-module.md grammar --- content/techniques/http-module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/techniques/http-module.md b/content/techniques/http-module.md index be8794b5fe..e0615e05f0 100644 --- a/content/techniques/http-module.md +++ b/content/techniques/http-module.md @@ -1,6 +1,6 @@ ### HTTP module -[Axios](https://github.com/axios/axios) is richly featured HTTP client package that is widely used. Nest wraps Axios and exposes it via the built-in `HttpModule`. The `HttpModule` exports the `HttpService` class, which exposes Axios-based methods to perform HTTP requests. The library also transforms the resulting HTTP responses into `Observables`. +[Axios](https://github.com/axios/axios) is a richly featured HTTP client package that is widely used. Nest wraps Axios and exposes it via the built-in `HttpModule`. The `HttpModule` exports the `HttpService` class, which exposes Axios-based methods to perform HTTP requests. The library also transforms the resulting HTTP responses into `Observables`. > info **Hint** You can also use any general purpose Node.js HTTP client library directly, including [got](https://github.com/sindresorhus/got) or [undici](https://github.com/nodejs/undici).