File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff 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
5656import { 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
5959type Expression = string | number | boolean ;
6060
6161// Create a typed SQL tag
Original file line number Diff line number Diff 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 ) ) {
Original file line number Diff line number Diff 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 ) ) {
You can’t perform that action at this time.
0 commit comments