Skip to content

Commit 63dc05e

Browse files
committed
Fix comment
1 parent 67daf4e commit 63dc05e

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

packages/sqlite_async/lib/src/web/worker/worker.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,15 @@
77
/// dart compile js \
88
/// lib/src/web/worker/db_worker.dart \
99
/// -o build/db_worker.js \
10-
/// -O4
10+
/// -O4 \
1111
/// -Dsqlite3.dartbigints=false
1212
/// ```
1313
///
1414
/// The output should then be included in each project's `web` directory.
1515
///
1616
/// Disabling `sqlite3.dartbigints` as a compile-time option reduces the size of
1717
/// the worker by disabling support for [BigInt] values which are implemented in
18-
/// Dart. The worker still supports native JavaScript bigint values, so this
19-
/// doesn't affect functionality.
18+
/// Dart. This doesn't affect functionality, and is purely an optimization.
2019
library;
2120

2221
import 'package:sqlite3_web/sqlite3_web.dart';

0 commit comments

Comments
 (0)