aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/website-html/newLinesInSamples.html
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-04-25 18:18:19 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-04-25 18:18:19 +0300
commitb697931315234ca74767ce26e2e9b03b46e4ad21 (patch)
tree5fdad533d769d0ea409a3d4104d6831d1698878b /core/testdata/format/website-html/newLinesInSamples.html
parent5cd5ec6904fadb3e420d548dfd987dd32cc24959 (diff)
downloaddokka-b697931315234ca74767ce26e2e9b03b46e4ad21.tar.gz
dokka-b697931315234ca74767ce26e2e9b03b46e4ad21.tar.bz2
dokka-b697931315234ca74767ce26e2e9b03b46e4ad21.zip
Fix <String> escaping in samples for KWS HTML format
Diffstat (limited to 'core/testdata/format/website-html/newLinesInSamples.html')
-rw-r--r--core/testdata/format/website-html/newLinesInSamples.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/testdata/format/website-html/newLinesInSamples.html b/core/testdata/format/website-html/newLinesInSamples.html
index 0babe122..ab70140d 100644
--- a/core/testdata/format/website-html/newLinesInSamples.html
+++ b/core/testdata/format/website-html/newLinesInSamples.html
@@ -4,7 +4,7 @@
<div class="signature"><code><span class="keyword">fun </span><span class="identifier">foo</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code></div>
<div class="sample"><pre><code class="lang-kotlin">
-fun main(args: Array<String>) {
+fun main(args: Array&lt;String&gt;) {
//sampleStart
val words = listOf("a", "abc", "ab", "def", "abcd")
val byLength = words.groupBy { it.length }