From 03952644e755ad26ebeb6d8d3de7143f288e149b Mon Sep 17 00:00:00 2001 From: FabianLars Date: Thu, 16 Feb 2023 18:46:45 +0100 Subject: [PATCH] fmt --- plugins/sql/guest-js/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/sql/guest-js/index.ts b/plugins/sql/guest-js/index.ts index b48795b4..87efe585 100644 --- a/plugins/sql/guest-js/index.ts +++ b/plugins/sql/guest-js/index.ts @@ -37,8 +37,8 @@ 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` or `sqlite:data.db`: Open the file `data.db` relative to the `dir` argument, or BaseDirectory.App if not provided + * - `sqlite:///data.db`: Open the file `data.db` from the root directory. `sqlite://\\?\` will be automatically converted to `sqlite:///`. + * - `sqlite://data.db` or `sqlite:data.db`: Open the file `data.db` relative to the `dir` argument, or BaseDirectory.App if not provided. * Appending `?mode=ro` to the path will open the database in read-only mode. * * @example @@ -66,8 +66,8 @@ 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` or `sqlite:data.db`: Open the file `data.db` relative to the `dir` argument, or BaseDirectory.App if not provided + * - `sqlite:///data.db`: Open the file `data.db` from the root directory. `sqlite://\\?\` will be automatically converted to `sqlite:///`. + * - `sqlite://data.db` or `sqlite:data.db`: Open the file `data.db` relative to the `dir` argument, or BaseDirectory.App if not provided. * Appending `?mode=ro` to the path will open the database in read-only mode. * * @example