Skip to content

Commit 2b1c8b7

Browse files
authored
Merge pull request #93 from qiaoyuang/main
Fix documents
2 parents 7702fbc + 9e0091e commit 2b1c8b7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

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

33
中文版请见[这里](README_CN.md)
44

5-
SQLlin is an ORM library for Kotlin Multiplatform that based on DSL and KSP. It uses SQLite under the hood. You can write SQL
5+
SQLlin is an ORM library for Kotlin Multiplatform that is based on DSL and KSP. It uses SQLite under the hood. You can write SQL
66
statements with your Kotlin code and these can be verified by Kotlin compiler. Sample just like be this:
77

88
```kotlin
@@ -26,7 +26,7 @@ fun sample() {
2626
}
2727
```
2828
SQLlin is able to insert Kotlin objects into database directly, and could query Kotlin objects from database directly. The serialization
29-
and deserialization ability based on [kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization).
29+
and deserialization ability is based on [kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization).
3030

3131
SQLlin supports these platforms:
3232

@@ -45,7 +45,7 @@ The architecture design of SQLlin is shown in the figure:
4545
![sqllin-architecture](sqllin-architecture.png)
4646

4747
SQLlin has 3 major parts: _sqllin-dsl_, _sqllin-driver_ and _sqllin-processor_. The _sqllin-driver_ is a set of common multiplatform SQLite low-level
48-
APIs, most of the time it is not recommended to use it directly. The _sqllin-dsl_ is DSL implementations for SQL statements, it based on
48+
APIs, most of the time it is not recommended to use it directly. The _sqllin-dsl_ is DSL implementations for SQL statements, it is based on
4949
_sqllin-driver_. The _sqllin-processor_ uses KSP to process annotations and generate code for using with _sqllin-dsl_.
5050

5151
You can learn how to use _sqllin-dsl_ in these documentations:
@@ -63,7 +63,7 @@ I don't recommend using _sqllin-driver_ directly, but if you want to learn more
6363

6464
## R8/ProGuard
6565

66-
Due to _sqllin-dsl_'s deserialization based on [kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization), the R8/ProGuard configuration please refer to
66+
Due to _sqllin-dsl_'s serialization and deserialization are based on [kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization), the R8/ProGuard configuration please refer to
6767
[kotlinx.serialization#Android](https://github.com/Kotlin/kotlinx.serialization#Android).
6868

6969
## License

0 commit comments

Comments
 (0)