#47 Enum Values are listed in lexicographical orde...
# dokka
u
#47 Enum Values are listed in lexicographical order instead of their natural order [Kotlin/dokka] Issue created by mfulton26 e.g. Given the following Kotlin `enum class`:
Copy code
enum class Gender { MALE, FEMALE }
Dokka generates HTML like this:
Gender
enum class Gender
<table><tbody><tr><td><a href="#-f-e-m-a-l-e">FEMALE</a></td><td></td></tr><tr><td><a href="#-m-a-l-e">MALE</a></td><td></td></tr></tbody></table>
But I expect HTML like this:
Gender
enum class Gender
<table><tbody><tr><td><a href="#-m-a-l-e">MALE</a></td><td></td></tr><tr><td><a href="#-f-e-m-a-l-e">FEMALE</a></td><td></td></tr></tbody></table>
(With
MALE
before
FEMALE
.)