Skip to content

Commit 32a3b9b

Browse files
authored
fix whitespace with gofmt (#203)
1 parent 06bf2d6 commit 32a3b9b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: godotenv.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
//
55
// The TL;DR is that you make a .env file that looks something like
66
//
7-
// SOME_ENV_VAR=somevalue
7+
// SOME_ENV_VAR=somevalue
88
//
99
// and then in your go code you can call
1010
//
11-
// godotenv.Load()
11+
// godotenv.Load()
1212
//
1313
// and all the env vars declared in .env will be available through os.Getenv("SOME_ENV_VAR")
1414
package godotenv
@@ -46,7 +46,7 @@ func Parse(r io.Reader) (map[string]string, error) {
4646
//
4747
// You can otherwise tell it which files to load (there can be more than one) like:
4848
//
49-
// godotenv.Load("fileone", "filetwo")
49+
// godotenv.Load("fileone", "filetwo")
5050
//
5151
// It's important to note that it WILL NOT OVERRIDE an env variable that already exists - consider the .env file to set dev vars or sensible defaults.
5252
func Load(filenames ...string) (err error) {
@@ -69,7 +69,7 @@ func Load(filenames ...string) (err error) {
6969
//
7070
// You can otherwise tell it which files to load (there can be more than one) like:
7171
//
72-
// godotenv.Overload("fileone", "filetwo")
72+
// godotenv.Overload("fileone", "filetwo")
7373
//
7474
// It's important to note this WILL OVERRIDE an env variable that already exists - consider the .env file to forcefully set all vars.
7575
func Overload(filenames ...string) (err error) {

0 commit comments

Comments
 (0)