generate_descriptor_pages.main.kts: fix comment

This commit is contained in:
Yann Cébron 2024-11-19 13:45:07 +01:00
parent cec421e21b
commit 6aaa228a34

View File

@ -92,7 +92,7 @@ fun processDescriptor(descriptor: DescriptorInfo) {
fun renderContent(content: DocumentationContent): String { fun renderContent(content: DocumentationContent): String {
val sb = StringBuilder() val sb = StringBuilder()
sb.appendLine() sb.appendLine()
sb.appendLine("[//]: # (This content is generated by plugin_configuration_file.main.kts.)") sb.appendLine("[//]: # (This content is generated by generate_descriptor_pages.main.kts script.)")
sb.appendLine("[//]: # (DO NOT EDIT IT MANUALLY)") sb.appendLine("[//]: # (DO NOT EDIT IT MANUALLY)")
sb.appendLine() sb.appendLine()
sb.appendContentHierarchy(content) sb.appendContentHierarchy(content)