Made some grammar correction

This commit is contained in:
knifeymouth 2022-10-19 14:21:31 +08:00 committed by GitHub
parent 85a2237126
commit 0a07b7ce82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ const doubleQuoteSpecialChars = "\\\n\r\"!$`"
//
// Call this function as close as possible to the start of your program (ideally in main)
//
// If you call Load without any args it will default to loading .env in the current path
// If you call Load without any args it will default to load .env in the current path
//
// You can otherwise tell it which files to load (there can be more than one) like
//
@ -55,7 +55,7 @@ func Load(filenames ...string) (err error) {
//
// Call this function as close as possible to the start of your program (ideally in main)
//
// If you call Overload without any args it will default to loading .env in the current path
// If you call Overload without any args it will default to load .env in the current path
//
// You can otherwise tell it which files to load (there can be more than one) like
//