From d1ce22bad6d15374e7752c66b57340422511deb5 Mon Sep 17 00:00:00 2001 From: Param Siddharth Date: Tue, 22 Nov 2022 14:11:19 +0530 Subject: [PATCH] Fix minor typo in text --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ca6d9a..5174360 100644 --- a/README.md +++ b/README.md @@ -96,8 +96,7 @@ That's it. `process.env` now has the expanded keys and values you defined in you ### Preload -You can use the `--require` (`-r`) [command line option](https://nodejs.org/api/cli.html#cli_r_require_module) to preload dotenv & dotenv- -. By doing this, you do not need to require and load dotenv or dotenv-expand in your application code. This is the preferred approach when using `import` instead of `require`. +You can use the `--require` (`-r`) [command line option](https://nodejs.org/api/cli.html#cli_r_require_module) to preload dotenv & dotenv-expand. By doing this, you do not need to require and load dotenv or dotenv-expand in your application code. This is the preferred approach when using `import` instead of `require`. ```bash $ node -r dotenv-expand/config your_script.js