From 08b356204ec4146962037a5156ffdef2d7ce72e8 Mon Sep 17 00:00:00 2001 From: Bart Louwers Date: Sun, 4 Aug 2024 16:43:52 +0200 Subject: [PATCH] doc: fix typo --- doc/api/sqlite.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/sqlite.md b/doc/api/sqlite.md index 17f47cff1ad431..cf30c87268fa92 100644 --- a/doc/api/sqlite.md +++ b/doc/api/sqlite.md @@ -171,7 +171,7 @@ Creates and attaches a session to the database. This method is a wrapper around Takes the name of the table that a change targets as first argument. When this option is not provided all changes are attempted. * `onConflict` {number} Determines how conflicts are handled. When provided, must be one of the values below: - * `SQLITE_CHANGESET_OMIT`: conflicting changes are either omitted. + * `SQLITE_CHANGESET_OMIT`: conflicting changes omitted. * `SQLITE_CHANGESET_REPLACE`: conflicting changes replace existing values. * `SQLITE_CHANGESET_ABORT`: abort on conflict and roll back databsase (default). * Returns: {boolean} Whether the changeset was applied succesfully without being aborted.