From 12e900ef3cf33915aace2cd8dec945149002c752 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Thu, 20 Aug 2020 20:30:55 +0200 Subject: [PATCH] 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 --- .../kotlin/generators/arguments/GenerateGradleOptions.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/generators/tests/org/jetbrains/kotlin/generators/arguments/GenerateGradleOptions.kt b/generators/tests/org/jetbrains/kotlin/generators/arguments/GenerateGradleOptions.kt index 50e939d17ff..91f7264992f 100644 --- a/generators/tests/org/jetbrains/kotlin/generators/arguments/GenerateGradleOptions.kt +++ b/generators/tests/org/jetbrains/kotlin/generators/arguments/GenerateGradleOptions.kt @@ -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