Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Apr 14, 2017
1 parent 07a2065 commit c33f531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const query: InternalQueryType = async (connection, sql, values) => {
values: normalizedValues
} = normalizeAnonymousValuePlaceholders(sql, values);

debug('normlized SQL', normalizedSql);
debug('normalized SQL', normalizedSql);

result = await connection.query(normalizedSql, normalizedValues);
} else if (values) {
Expand All @@ -70,7 +70,7 @@ export const query: InternalQueryType = async (connection, sql, values) => {
values: normalizedValues
} = normalizeNamedValuePlaceholders(sql, values);

debug('normlized SQL', normalizedSql);
debug('normalized SQL', normalizedSql);

result = await connection.query(normalizedSql, normalizedValues);
} else {
Expand Down

0 comments on commit c33f531

Please sign in to comment.