We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29d1d8d commit 9b4b3dfCopy full SHA for 9b4b3df
packages/sqlite_async/lib/src/web/protocol.dart
@@ -26,7 +26,7 @@ extension type CustomDatabaseMessage._raw(JSObject _) implements JSObject {
26
factory CustomDatabaseMessage(CustomDatabaseMessageKind kind,
27
[String? sql, List<Object?> parameters = const []]) {
28
final rawSql = (sql ?? '').toJS;
29
- // Serializing parameters this was is backwards-compatible with dartify()
+ // Serializing parameters this way is backwards-compatible with dartify()
30
// on the other end, but a bit more efficient while also suppporting sound
31
// communcation between dart2js workers and dart2wasm clients.
32
// Older workers ignore the typeInfo, but that's not a problem.
0 commit comments