Skip to content

Commit 74449f0

Browse files
committed
remove process.env code that make it look like types on on process.env
1 parent c125f8b commit 74449f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ PONG=`some,thing,that,goes,wow`
3838

3939
After using this plugin, the environment variables are parsed to their proper types.
4040

41-
To test it out, simply log the `process.env` in your console:
41+
To test it out, simply log the returned object in your console:
4242

4343
```js
44-
console.log(process.env);
44+
console.log(env);
4545
```
4646

4747
And you'll see that it outputs the properly parsed variable types:

0 commit comments

Comments
 (0)