Skip to content

Commit

Permalink
doc: fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
louwers committed Nov 2, 2024
1 parent 14ba002 commit 1d8da20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/api/sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ Creates and attaches a session to the database. This method is a wrapper around

* `changeset` {Uint8Array} A binary changeset or patchset.
* `options` {Object} The configuration options for how the changes will be applied.
* `filter` {Function} Skip changes that, when targeted table name is supplied to this function, return a truthy value. By default, all changes are attempted.
* `filter` {Function} Skip changes that, when targeted table name is supplied to this function, return a truthy value.
By default, all changes are attempted.
* `onConflict` {number} Determines how conflicts are handled. **Default**: `SQLITE_CHANGESET_ABORT`.
* `SQLITE_CHANGESET_OMIT`: conflicting changes are omitted.
* `SQLITE_CHANGESET_REPLACE`: conflicting changes replace existing values.
Expand Down Expand Up @@ -418,7 +419,6 @@ The following constants are meant for use with [`database.applyChangeset()`](#da
</tr>
</table>


[Changesets and Patchsets]: https://www.sqlite.org/sessionintro.html#changesets_and_patchsets
[SQL injection]: https://en.wikipedia.org/wiki/SQL_injection
[`--experimental-sqlite`]: cli.md#--experimental-sqlite
Expand Down

0 comments on commit 1d8da20

Please sign in to comment.