From 9f46f1ccff9249b4fa85ddb932697b9b56dc34f7 Mon Sep 17 00:00:00 2001 From: dzikoysk Date: Sun, 21 Jul 2024 18:43:51 +0200 Subject: [PATCH] GH-13 Fix typo in tense consonants and release 1.0.14 --- build.gradle.kts | 2 +- src/commonMain/kotlin/Hangul.kt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 561945e..05f098f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } group = "com.dzikoysk" -version = "1.0.13" +version = "1.0.14" repositories { mavenCentral() diff --git a/src/commonMain/kotlin/Hangul.kt b/src/commonMain/kotlin/Hangul.kt index d5a9988..31aee54 100644 --- a/src/commonMain/kotlin/Hangul.kt +++ b/src/commonMain/kotlin/Hangul.kt @@ -4,7 +4,7 @@ import kotlin.js.ExperimentalJsExport import kotlin.js.JsExport @JsExport -@Suppress("unused") +@Suppress("unused", "MemberVisibilityCanBePrivate") object Hangul { class Letter( @@ -56,7 +56,7 @@ object Hangul { Letter("ㅢ", "ui"), ) - val tenseConstanants = listOf( + val tenseConsonants = listOf( Letter("ㄲ", "kk"), Letter("ㄸ", "tt"), Letter("ㅃ", "pp"), @@ -68,6 +68,6 @@ object Hangul { consonants + vowels fun getAll(): List = - consonants + tenseConstanants + vowels + combinationVowels + consonants + tenseConsonants + vowels + combinationVowels } \ No newline at end of file