Skip to content

Commit 74e966d

Browse files
committed
More polishes
1 parent c6639d3 commit 74e966d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/powersync-sdk-common/src/client/AbstractPowerSyncDatabase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ export abstract class AbstractPowerSyncDatabase extends BaseObserver<PowerSyncDB
515515
/**
516516
* Open a read-write transaction.
517517
* This takes a global lock - only one write transaction can execute against the database at a time.
518-
* TODO: Statements within the transaction must be done on the provided SqliteWriteContext - attempting statements on the SqliteConnection instance will error.
518+
* Statements within the transaction must be done on the provided {@link Transaction} interface.
519519
*/
520520
async writeTransaction<T>(
521521
callback: (tx: Transaction) => Promise<T>,

packages/powersync-sdk-common/src/client/sync/bucket/CrudBatch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { CrudEntry } from './CrudEntry';
22

33
/**
4-
* A batch of client-side changes.
4+
* A batch of client-side changes.
55
*/
66
export class CrudBatch {
77
constructor(

0 commit comments

Comments
 (0)