Skip to content

Commit 4c28ed0

Browse files
authored
refactor: fix typos (#393)
1 parent 8185862 commit 4c28ed0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/libraries/sql-tag/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ For cases where you want to enforce a specific type for the values in your SQL q
5555
```ts
5656
import { createTypedSqlTag } from "@ts-safeql/sql-tag";
5757

58-
// Define the possble expressions that can be used in the query
58+
// Define the possible expressions that can be used in the query
5959
type Expression = string | number | boolean;
6060

6161
// Create a typed SQL tag

packages/eslint-plugin/src/utils/pg.utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function parseConnection(databaseUrl: string): ConnectionOptions {
3131
}
3232

3333
if (!isDefined(connection.password)) {
34-
throw new Error("Could not resolve datbase password");
34+
throw new Error("Could not resolve database password");
3535
}
3636

3737
if (!isDefined(connection.database)) {

packages/test-utils/src/setup-test-database.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function parseConnection(databaseUrl: string): ConnectionOptions {
5151
}
5252

5353
if (!isDefined(connection.password)) {
54-
throw new Error("Could not resolve datbase password");
54+
throw new Error("Could not resolve database password");
5555
}
5656

5757
if (!isDefined(connection.database)) {

0 commit comments

Comments
 (0)