Hi! Is there any reason for why dokka prefixes ev...
# dokka
o
Hi! Is there any reason for why dokka prefixes every interface/class/etc with a dash? www.excample-domain.com/com.mycorpy.core.ecs/-entity-manager <-- see dash before entity-manager
Hm only seems to happen when the class/etc begins with a capital letter.
i
Hi! Yeah,
-e
basically means capital
E
As far as understand, camel case is not used in file names so that Dokka works on case insensitive systems, and dash is used so that you can differentiate between
class EntityManager
and
fun entityManager()
o
Ah got it! Thanks @Ignat Beresnev 🙂