From a3ce27f4e0299755d6c0c2b430825d77eaa6aba9 Mon Sep 17 00:00:00 2001 From: Peter Leibiger Date: Tue, 13 Dec 2022 01:40:21 +0100 Subject: [PATCH] Fix typos --- drift_dev/lib/src/writer/queries/query_writer.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drift_dev/lib/src/writer/queries/query_writer.dart b/drift_dev/lib/src/writer/queries/query_writer.dart index 56398ac0..7e5ea1ba 100644 --- a/drift_dev/lib/src/writer/queries/query_writer.dart +++ b/drift_dev/lib/src/writer/queries/query_writer.dart @@ -36,7 +36,7 @@ class QueryWriter { } // We generate the Dart string literal for the SQL query by walking the - // parsed AST. This eliminates unecessary whitespace and comments in the + // parsed AST. This eliminates unnecessary whitespace and comments in the // generated code. // In some cases, the whitespace has an impact on the semantic of the // query. For instance, `SELECT 1 + 2` has a different column name than @@ -620,7 +620,7 @@ class _ExpandedVariableWriter { void _writeNewVariables() { // In the new generation mode, we first write all non-array variables in - // a continous block, then we proceed to add arrays and other expanded + // a continuous block, then we proceed to add arrays and other expanded // declarations. var first = true;