From 08878a160fe615d6af5ad7e6869172d908ab458f Mon Sep 17 00:00:00 2001 From: Ritik Jain <60597329+re-Tick@users.noreply.github.com> Date: Tue, 14 Mar 2023 15:27:14 +0530 Subject: [PATCH] docs: updates description for router/dependencies --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d9b6540..5fc01d9 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ An example is provided in [Sample unit test for Mocking/Stubing](#sample-unit-te ## Supported Routers ### 1. Express -Keploy adds a middleware for capturing requests/responses using require hooks. To integrate, just add the following statement before your require statement of `express`. +Keploy adds a middleware for capturing requests/responses using require hooks. To integrate, just add the following statement before every require statement of `express` in your app. ```js // Uncomment following blocks to use require in ES Module /* @@ -148,7 +148,7 @@ app.listen(port, () => { ## Supported Dependencies ### 1. Octokit -To integrate, just add this line before require statement of Octokit in your application. +To integrate, just add this line before every require statement of Octokit in your application. ```js // Uncomment following blocks to use require in ES Module /* @@ -162,7 +162,7 @@ const { Octokit, App } = require("octokit"); ``` ### 2. Mongoose -To integrate, just add this line before require statement of mongoose in your application. +To integrate, just add this line before every require statement of mongoose in your application. ```js // Uncomment following blocks to use require in ES Module /*