Skip to content

Commit

Permalink
GH-13 Fix typo in tense consonants and release 1.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Jul 21, 2024
1 parent 6179145 commit 9f46f1c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "com.dzikoysk"
version = "1.0.13"
version = "1.0.14"

repositories {
mavenCentral()
Expand Down
6 changes: 3 additions & 3 deletions src/commonMain/kotlin/Hangul.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import kotlin.js.ExperimentalJsExport
import kotlin.js.JsExport

@JsExport
@Suppress("unused")
@Suppress("unused", "MemberVisibilityCanBePrivate")
object Hangul {

class Letter(
Expand Down Expand Up @@ -56,7 +56,7 @@ object Hangul {
Letter("", "ui"),
)

val tenseConstanants = listOf(
val tenseConsonants = listOf(
Letter("", "kk"),
Letter("", "tt"),
Letter("", "pp"),
Expand All @@ -68,6 +68,6 @@ object Hangul {
consonants + vowels

fun getAll(): List<Letter> =
consonants + tenseConstanants + vowels + combinationVowels
consonants + tenseConsonants + vowels + combinationVowels

}

0 comments on commit 9f46f1c

Please sign in to comment.