Skip to content

Commit 2c1a0ab

Browse files
committed
Another link
1 parent 2fbded1 commit 2c1a0ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export abstract class AbstractPowerSyncDatabase extends BaseObserver<PowerSyncDB
126126
/**
127127
* The underlying database.
128128
*
129-
* For the most part, behavior is the same whether querying on the underlying database, or on [AbstractPowerSyncDatabase]. The main difference is in update notifications: the underlying database reports updates to the underlying tables, while AbstractPowerSyncDatabase reports updates to the higher-level views.
129+
* For the most part, behavior is the same whether querying on the underlying database, or on {@link AbstractPowerSyncDatabase}. The main difference is in update notifications: the underlying database reports updates to the underlying tables, while AbstractPowerSyncDatabase reports updates to the higher-level views.
130130
*/
131131
protected get database() {
132132
return this.options.database;
@@ -179,7 +179,7 @@ export abstract class AbstractPowerSyncDatabase extends BaseObserver<PowerSyncDB
179179
/**
180180
* Replace the schema with a new version. This is for advanced use cases - typically the schema should just be specified once in the constructor.
181181
*
182-
* Cannot be used while connected - this should only be called before [AbstractPowerSyncDatabase.connect].
182+
* Cannot be used while connected - this should only be called before {@link AbstractPowerSyncDatabase.connect}.
183183
*/
184184
async updateSchema(schema: Schema) {
185185
if (this.abortController) {

0 commit comments

Comments
 (0)