File tree 1 file changed +1
-3
lines changed
packages/sqlite_async/lib/src/native/database
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ class SqliteConnectionPool with SqliteQueries implements SqliteConnection {
59
59
///
60
60
/// This function first locks all read and write connections, collecting their
61
61
/// contexts. It then executes the provided [callback] function on each of these
62
- /// contexts. After the [callback] completex for each context, the locks are released
62
+ /// contexts. After the [callback] completes for each context, the locks are released.
63
63
///
64
64
/// Example usage:
65
65
/// ```dart
@@ -68,8 +68,6 @@ class SqliteConnectionPool with SqliteQueries implements SqliteConnection {
68
68
/// await ctx.execute('PRAGMA schema_version');
69
69
/// });
70
70
/// ```
71
- ///
72
- ///
73
71
exclusiveLock <T >(
74
72
Future <T > Function (SqliteReadContext tx) callback,
75
73
) async {
You can’t perform that action at this time.
0 commit comments