Skip to content

Commit 73f456f

Browse files
authored
Fix readme (#8)
- fix result issue in readme
1 parent 621b76b commit 73f456f

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
SQLite driver implementation for the abstract [Feather Database](https://github.com/feather-framework/feather-database) Swift API package.
44

5-
[![Release: 1.0.0-beta.3](https://img.shields.io/badge/Release-1%2E0%2E0--beta%2E3-F05138)](https://github.com/feather-framework/feather-sqlite-database/releases/tag/1.0.0-beta.3)
5+
[
6+
![Release: 1.0.0-beta.3](https://img.shields.io/badge/Release-1%2E0%2E0--beta%2E3-F05138)
7+
](
8+
https://github.com/feather-framework/feather-sqlite-database/releases/tag/1.0.0-beta.3
9+
)
610

711
## Features
812

@@ -45,7 +49,11 @@ Then add `FeatherSQLiteDatabase` to your target dependencies:
4549

4650
API documentation is available at the link below:
4751

48-
[![DocC API documentation](https://img.shields.io/badge/DocC-API_documentation-F05138)](https://feather-framework.github.io/feather-sqlite-database/)
52+
[
53+
![DocC API documentation](https://img.shields.io/badge/DocC-API_documentation-F05138)
54+
](
55+
https://feather-framework.github.io/feather-sqlite-database/
56+
)
4957

5058
Here is a brief example:
5159

@@ -72,7 +80,7 @@ let database = SQLiteDatabaseClient(
7280

7381
try await client.run()
7482

75-
try await database.withConnection { connection in
83+
let result = try await database.withConnection { connection in
7684
try await connection.run(
7785
query: #"""
7886
SELECT

0 commit comments

Comments
 (0)