Fix typo in readme.md

This commit is contained in:
SeanOMik 2023-04-25 21:29:21 -04:00 committed by GitHub
parent 8652d9d6cd
commit 9635684d91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ This crate is a pretty simple implementation for getting config options from cli
CLI Arguments:
```shell
./program --db.name=my-database --host=my-host --port=5432 --user=my-user --password=my-password
./program --db.name=my-database --db.host=my-host --db.port=5432 --db.user=my-user --db.password=my-password
```
TOML config:
@ -19,4 +19,4 @@ host = "localhost"
port = 5432
user = "my-user"
password = "my-password"
```
```