Skip to content

Commit 1225a7c

Browse files
committed
style: remove dotenv language type
1 parent 1a942d6 commit 1225a7c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/parser.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,30 +17,30 @@ import { RuntimeException } from '@poppinss/utils/exception'
1717
* Env parser parses the environment variables from a string formatted
1818
* as a key-value pair seperated using an `=`. For example:
1919
*
20-
* ```dotenv
20+
* ```
2121
* PORT=3333
2222
* HOST=127.0.0.1
2323
* ```
2424
*
2525
* The variables can reference other environment variables as well using `$`.
2626
* For example:
2727
*
28-
* ```dotenv
28+
* ```
2929
* PORT=3333
3030
* REDIS_PORT=$PORT
3131
* ```
3232
*
3333
* The variables using characters other than letters can wrap variable
3434
* named inside a curly brace.
3535
*
36-
* ```dotenv
36+
* ```
3737
* APP-PORT=3333
3838
* REDIS_PORT=${APP-PORT}
3939
* ```
4040
*
4141
* You can escape the `$` sign with a backtick.
4242
*
43-
* ```dotenv
43+
* ```
4444
* REDIS_PASSWORD=foo\$123
4545
* ```
4646
*

0 commit comments

Comments
 (0)