From 53daca0f0ea00863fbf8e5b16df1e36c3a5946b5 Mon Sep 17 00:00:00 2001 From: Elliot Waite Date: Thu, 1 Sep 2022 22:11:57 -0700 Subject: [PATCH] Fix typos in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fa8f6b86..70c3cf99 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ As early as possible in your application, import and configure dotenv: ```javascript require('dotenv').config() -console.log(process.env) // remove this after you've confirmed it working +console.log(process.env) // remove this after you've confirmed it is working ``` .. or using ES6? @@ -94,13 +94,13 @@ PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY----- ... Kh9NV... ... ------END DSA PRIVATE KEY-----" +-----END RSA PRIVATE KEY-----" ``` Alternatively, you can double quote strings and use the `\n` character: ```dosini -PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\nKh9NV...\n-----END DSA PRIVATE KEY-----\n" +PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\nKh9NV...\n-----END RSA PRIVATE KEY-----\n" ``` ### Comments