From 988ac8e6e8e66923f36ef91c33abe8a99aa9aef0 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Thu, 16 Feb 2023 18:29:16 +0100 Subject: [PATCH] doc comment update --- plugins/sql/guest-js/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/sql/guest-js/index.ts b/plugins/sql/guest-js/index.ts index 0c3bfbb1..d3faedce 100644 --- a/plugins/sql/guest-js/index.ts +++ b/plugins/sql/guest-js/index.ts @@ -38,7 +38,7 @@ export default class Database { * The path must be in one of the following formats: * - `sqlite::memory:`: Open an in-memory database. * - `sqlite:///data.db`: Open the file `data.db` from the root directory. `sqlite://\\?\` will be automatically converted to `sqlite:///` - * - `sqlite://data.db`: Open the file `data.db` relative to the `dir` argument, or BaseDirectory.App if not provided + * - `sqlite://data.db` or `sqlite:data.db`: Open the file `data.db` relative to the `dir` argument, or BaseDirectory.App if not provided * * @example * ```ts @@ -66,7 +66,7 @@ export default class Database { * The path must be in one of the following formats: * - `sqlite::memory:`: Open an in-memory database. * - `sqlite:///data.db`: Open the file `data.db` from the root directory. `sqlite://\\?\` will be automatically converted to `sqlite:///` - * - `sqlite://data.db`: Open the file `data.db` relative to the `dir` argument, or BaseDirectory.App if not provided + * - `sqlite://data.db` or `sqlite:data.db`: Open the file `data.db` relative to the `dir` argument, or BaseDirectory.App if not provided * * @example * ```ts