Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo committed Dec 27, 2023
1 parent ee3f51d commit 13fa723
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -13,7 +13,7 @@ Define a struct with fields using the `env` tag:

```go
type MyConfig struct {
Port string `env:"PORT"`
Port string `env:"PORT"`
Username string `env:"USERNAME"`
}
```
Expand Down Expand Up @@ -59,7 +59,7 @@ type MyConfig struct {
}

type DatabaseConfig struct {
Port string `env:"PORT"`
Port string `env:"PORT"`
Username string `env:"USERNAME"`
}
```
Expand Down Expand Up @@ -118,7 +118,7 @@ examples.

```go
type MyStruct struct {
Port string `env:"PORT,overwrite"`
Port string `env:"PORT, overwrite"`
}
```

Expand Down

0 comments on commit 13fa723

Please sign in to comment.