From cca2fce30116bf0779bea795e4f5fd0180e0f57c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gunnlaugur=20=C3=9E=C3=B3r=20Briem?= Date: Wed, 22 Jun 2022 18:05:50 +0000 Subject: [PATCH] fix: typo in "reconstitute[d]" --- src/execution/statement-exec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/execution/statement-exec.ts b/src/execution/statement-exec.ts index 6ba41ccc..6a556ce7 100644 --- a/src/execution/statement-exec.ts +++ b/src/execution/statement-exec.ts @@ -242,9 +242,9 @@ export class StatementExec implements _IStatement { msgs.push(`*️⃣ Failed SQL statement: ${this.pAsSql}`); } else { try { - msgs.push(`*️⃣ Reconsituted failed SQL statement: ${toSql.statement(this.statement)}`); + msgs.push(`*️⃣ Reconstituted failed SQL statement: ${toSql.statement(this.statement)}`); } catch (f) { - msgs.push(`*️⃣ `); + msgs.push(`*️⃣ `); } } }