diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-01-16 19:19:54 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-01-16 19:19:54 +0100 |
commit | db6f8c09977be52109fc65f810ad030fe13bc3e1 (patch) | |
tree | 02332a5d90746c92470a288e684cc79a3ab8aed5 /src/Formats/HtmlFormatService.kt | |
parent | 18bd85cc710718658d6c902c04de5d356cd0aee8 (diff) | |
download | dokka-db6f8c09977be52109fc65f810ad030fe13bc3e1.tar.gz dokka-db6f8c09977be52109fc65f810ad030fe13bc3e1.tar.bz2 dokka-db6f8c09977be52109fc65f810ad030fe13bc3e1.zip |
fix tests after merge
Diffstat (limited to 'src/Formats/HtmlFormatService.kt')
-rw-r--r-- | src/Formats/HtmlFormatService.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Formats/HtmlFormatService.kt b/src/Formats/HtmlFormatService.kt index 9572dde0..3415bfd7 100644 --- a/src/Formats/HtmlFormatService.kt +++ b/src/Formats/HtmlFormatService.kt @@ -126,7 +126,7 @@ public open class HtmlFormatService(locationService: LocationService, } override fun appendOutline(location: Location, to: StringBuilder, nodes: Iterable<DocumentationNode>) { - templateService.appendHeader(to) + templateService.appendHeader(to, "Module Contents") super<OutlineFormatService>.appendOutline(location, to, nodes) templateService.appendFooter(to) } |