aboutsummaryrefslogtreecommitdiff
path: root/src/Generation/ConsoleGenerator.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/Generation/ConsoleGenerator.kt')
-rw-r--r--src/Generation/ConsoleGenerator.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Generation/ConsoleGenerator.kt b/src/Generation/ConsoleGenerator.kt
index 90bd53be..3ba42099 100644
--- a/src/Generation/ConsoleGenerator.kt
+++ b/src/Generation/ConsoleGenerator.kt
@@ -12,7 +12,7 @@ public class ConsoleGenerator() {
public fun generateHeader(node: DocumentationNode, indent: String = "") {
println("$indent${node.kind}: ${node.name}")
- println("$indent\"${node.doc.replace("\n", "\n$indent")}\"")
+ println("$indent\"${node.doc.summary.replace("\n", "\n$indent")}\"")
println()
}