Minor, do not capitalize words in generated Gradle options docs
To make this output correspond to the actual table at https://github.com/JetBrains/kotlin-web-site/blob/master/pages/docs/reference/using-gradle.md
This commit is contained in:
@@ -49,7 +49,7 @@ fun generateKotlinGradleOptions(withPrinterToFile: (targetFile: File, Printer.()
|
||||
commonOptions + additionalOptions)
|
||||
}
|
||||
|
||||
println("### Attributes Common for JVM, JS, and JS DCE\n")
|
||||
println("### Attributes common for JVM, JS, and JS DCE\n")
|
||||
generateMarkdown(commonOptions + additionalOptions)
|
||||
|
||||
val commonCompilerInterfaceFqName = FqName("org.jetbrains.kotlin.gradle.dsl.KotlinCommonOptions")
|
||||
@@ -60,7 +60,7 @@ fun generateKotlinGradleOptions(withPrinterToFile: (targetFile: File, Printer.()
|
||||
parentType = commonInterfaceFqName)
|
||||
}
|
||||
|
||||
println("\n### Attributes Common for JVM and JS\n")
|
||||
println("\n### Attributes common for JVM and JS\n")
|
||||
generateMarkdown(commonCompilerOptions)
|
||||
|
||||
// generate jvm interface
|
||||
@@ -82,7 +82,7 @@ fun generateKotlinGradleOptions(withPrinterToFile: (targetFile: File, Printer.()
|
||||
commonOptions + commonCompilerOptions + jvmOptions)
|
||||
}
|
||||
|
||||
println("\n### Attributes Specific for JVM\n")
|
||||
println("\n### Attributes specific for JVM\n")
|
||||
generateMarkdown(jvmOptions)
|
||||
|
||||
// generate js interface
|
||||
@@ -103,7 +103,7 @@ fun generateKotlinGradleOptions(withPrinterToFile: (targetFile: File, Printer.()
|
||||
commonOptions + commonCompilerOptions + jsOptions)
|
||||
}
|
||||
|
||||
println("\n### Attributes Specific for JS\n")
|
||||
println("\n### Attributes specific for JS\n")
|
||||
generateMarkdown(jsOptions)
|
||||
|
||||
// generate JS DCE interface and implementation
|
||||
|
||||
Reference in New Issue
Block a user