Skip to content

Commit f90b7eb

Browse files
committed
Cleanup of function comment.
1 parent d278237 commit f90b7eb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/sqlite_async/lib/src/native/database/connection_pool.dart

+1-3
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class SqliteConnectionPool with SqliteQueries implements SqliteConnection {
5959
///
6060
/// This function first locks all read and write connections, collecting their
6161
/// 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.
6363
///
6464
/// Example usage:
6565
/// ```dart
@@ -68,8 +68,6 @@ class SqliteConnectionPool with SqliteQueries implements SqliteConnection {
6868
/// await ctx.execute('PRAGMA schema_version');
6969
/// });
7070
/// ```
71-
///
72-
///
7371
exclusiveLock<T>(
7472
Future<T> Function(SqliteReadContext tx) callback,
7573
) async {

0 commit comments

Comments
 (0)