Skip to content

Commit

Permalink
Merge pull request #672 from elliotwaite/patch-1
Browse files Browse the repository at this point in the history
Fix typos in README
  • Loading branch information
motdotla committed Sep 2, 2022
2 parents 7323dbe + 53daca0 commit b2a3164
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -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?
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b2a3164

Please sign in to comment.