Fix dependency kind explanations

They are directly used for enum valueOf, and the enum constants are not
all capitals. Instead, only the first letter is capital.
This commit is contained in:
Jinseong Jeon
2023-11-18 22:18:59 -08:00
committed by teamcity
parent 3fbc16af62
commit 3c775c4a42
@@ -18,14 +18,14 @@ object ModuleStructureDirectives : SimpleDirectivesContainer() {
val DEPENDENCY by stringDirective(
"""
Usage: // DEPENDENCY: {name} [SOURCE|KLIB|BINARY]
Usage: // DEPENDENCY: {name} [Source|Klib|Binary]
Declares simple dependency on other module
""".trimIndent()
)
val DEPENDS_ON by stringDirective(
"""
Usage: // DEPENDS_ON: {name} [SOURCE|KLIB|BINARY]
Usage: // DEPENDS_ON: {name} [Source|Klib|Binary]
Declares dependency on other module witch may contains `expect`
declarations which has corresponding `expect` declarations
in current module