From 2e9d14944b47e96c6688d45055122f5bba500c0e Mon Sep 17 00:00:00 2001 From: Marvin Elsen Date: Sun, 15 Sep 2024 15:57:17 +0200 Subject: [PATCH] Improve phrasing --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index db20a62..e65f6b0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # CC-CEDICT Parser for Kotlin -A parser for the [CC-CEDICT](https://www.mdbg.net/chinese/dictionary?page=cedict) written in [Kotlin](https://kotlinlang.org). +A parser for the [CC-CEDICT](https://www.mdbg.net/chinese/dictionary?page=cedict) Chinese-to-English dictionary written +in [Kotlin](https://kotlinlang.org). ## Installation @@ -29,7 +30,8 @@ dependencies { ```kotlin fun main() { - val cedictInputStream = GZIPInputStream(object {}.javaClass.getResourceAsStream("/cedict_1_0_ts_utf-8_mdbg.txt.gz")!!) + val cedictInputStream = + GZIPInputStream(object {}.javaClass.getResourceAsStream("/cedict_1_0_ts_utf-8_mdbg.txt.gz")!!) val cedictParser = CedictParser.instance val cedictEntries = cedictParser.parseCedict(cedictInputStream) @@ -51,4 +53,5 @@ To the following third-party code, data, and files in the repository different l ### CC-CEDICT -[CC-CEDICT](https://cc-cedict.org/wiki) is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/). \ No newline at end of file +[CC-CEDICT](https://cc-cedict.org/wiki) is licensed under +a [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/). \ No newline at end of file