Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[typo] locahost → localhost
  • Loading branch information
alexzamai-orca authored Apr 11, 2025
commit 29c7be1e55d4b9bfa3031d7118152d35ec9bbb3a
6 changes: 3 additions & 3 deletions docs/howto/managed-databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Access to a running database server is required. Add a connection string to the
version: '2'
servers:
- engine: postgresql
uri: "postgres://locahost:5432/postgres?sslmode=disable"
uri: "postgres://localhost:5432/postgres?sslmode=disable"
sql:
- schema: schema.sql
queries: query.sql
Expand Down Expand Up @@ -63,7 +63,7 @@ on a per-query basis to speed up future codegen runs. Here's a minimal working c
version: '2'
servers:
- engine: postgresql
uri: "postgres://locahost:5432/postgres?sslmode=disable"
uri: "postgres://localhost:5432/postgres?sslmode=disable"
sql:
- schema: schema.sql
queries: query.sql
Expand All @@ -89,7 +89,7 @@ to ensure the query is valid. Here's a minimal working configuration:
version: '2'
servers:
- engine: postgresql
uri: "postgres://locahost:5432/postgres?sslmode=disable"
uri: "postgres://localhost:5432/postgres?sslmode=disable"
sql:
- schema: schema.sql
queries: query.sql
Expand Down
Loading