diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-05-29 13:52:43 +0200 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-05-29 13:52:43 +0200 |
commit | 64414ce984bc86e09b8724adbd01f1cb2646c17e (patch) | |
tree | 802710da5009b0b86519cc7cde9cdb6685cc7c99 /src/Formats/KotlinWebsiteFormatService.kt | |
parent | 2fc80c4aae0d2957b34b176b9a2a48cb5089f41c (diff) | |
download | dokka-64414ce984bc86e09b8724adbd01f1cb2646c17e.tar.gz dokka-64414ce984bc86e09b8724adbd01f1cb2646c17e.tar.bz2 dokka-64414ce984bc86e09b8724adbd01f1cb2646c17e.zip |
apply code cleanup; fix couple of deprecations manually
Diffstat (limited to 'src/Formats/KotlinWebsiteFormatService.kt')
-rw-r--r-- | src/Formats/KotlinWebsiteFormatService.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Formats/KotlinWebsiteFormatService.kt b/src/Formats/KotlinWebsiteFormatService.kt index 3b95a915..21fc9dae 100644 --- a/src/Formats/KotlinWebsiteFormatService.kt +++ b/src/Formats/KotlinWebsiteFormatService.kt @@ -71,7 +71,7 @@ public class KotlinWebsiteFormatService(locationService: LocationService, super.appendBlockCode(to, line, language) } else { to.append("<pre markdown=\"1\">") - to.append(line.trimLeading()) + to.append(line.trimStart()) to.append("</pre>") } } |