Skip to content

Commit ccf67ef

Browse files
committed
fix typo
1 parent c9d7755 commit ccf67ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/powersync_core/lib/src/sync/mutable_sync_status.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ final class MutableSyncStatus {
7979
}
8080
}
8181

82-
SyncStatus immutableSnapsot() {
82+
SyncStatus immutableSnapshot() {
8383
return SyncStatus(
8484
connected: connected,
8585
connecting: connecting,
@@ -111,7 +111,7 @@ final class SyncStatusStateStream {
111111
return;
112112
}
113113

114-
final current = status.immutableSnapsot();
114+
final current = status.immutableSnapshot();
115115
if (current != _lastPublishedStatus) {
116116
_statusStreamController.add(current);
117117
_lastPublishedStatus = current;

0 commit comments

Comments
 (0)