@@ -177,10 +177,10 @@ abstract class SqliteConnection implements SqliteWriteContext {
177177 /// together when data is changed.
178178 ///
179179 /// While the stream can efficiently handle backpressure (paused subscriptions
180- /// will not be notified multiple times afer resuming, they'll receive a
180+ /// will not be notified multiple times after resuming, they'll receive a
181181 /// single aggregated event instead), it also installs a throttle of 30 during
182- /// which the stream will be paused automtically . To disable this behavior,
183- /// pass `null` for `throttle` or se [onChangeUnthrottled] explicitly.
182+ /// which the stream will be paused automatically . To disable this behavior,
183+ /// pass `null` for `throttle` or use [onChangeUnthrottled] explicitly.
184184 Stream <UpdateNotification > onChange (Iterable <String >? tables,
185185 {Duration ? throttle = const Duration (milliseconds: 30 ),
186186 bool triggerImmediately = true }) {
@@ -298,7 +298,7 @@ abstract class SqliteConnection implements SqliteWriteContext {
298298 /// may be held concurrently.
299299 ///
300300 /// If [abortTrigger] is set and completes before the database was able to
301- /// obtain a read lock, an [AbortException] will be thrown.
301+ /// obtain the write lock, an [AbortException] will be thrown.
302302 Future <T > abortableWriteLock <T >(
303303 Future <T > Function (SqliteWriteContext tx) callback,
304304 {Future <void >? abortTrigger,
0 commit comments