Skip to content

Commit efc9bdb

Browse files
authored
chore(doc): Update 03-database.md
Fix a typo on the `DATABASE` word
1 parent 7abc2ac commit efc9bdb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Web/Documentation/content/1.x/1-essentials/03-database.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ use Tempest\Database\Config\PostgresConfig;
2828
use function Tempest\env;
2929

3030
return new PostgresConfig(
31-
host: env('DATBASE_HOST', default: '127.0.0.1'),
32-
port: env('DATBASE_PORT', default: '5432'),
33-
username: env('DATBASE_USERNAME', default: 'postgres'),
34-
password: env('DATBASE_PASSWORD', default: 'postgres'),
35-
database: env('DATBASE_DATABASE', default: 'postgres'),
31+
host: env('DATABASE_HOST', default: '127.0.0.1'),
32+
port: env('DATABASE_PORT', default: '5432'),
33+
username: env('DATABASE_USERNAME', default: 'postgres'),
34+
password: env('DATABASE_PASSWORD', default: 'postgres'),
35+
database: env('DATABASE_DATABASE', default: 'postgres'),
3636
);
3737
```
3838

0 commit comments

Comments
 (0)