aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/website-samples/newLinesInSamples.md
diff options
context:
space:
mode:
Diffstat (limited to 'core/testdata/format/website-samples/newLinesInSamples.md')
-rw-r--r--core/testdata/format/website-samples/newLinesInSamples.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/core/testdata/format/website-samples/newLinesInSamples.md b/core/testdata/format/website-samples/newLinesInSamples.md
deleted file mode 100644
index 5344b983..00000000
--- a/core/testdata/format/website-samples/newLinesInSamples.md
+++ /dev/null
@@ -1,31 +0,0 @@
----
-title: foo - test
-layout: api
----
-
-<div class='api-docs-breadcrumbs'><a href="test/index">test</a> / <a href="test/foo">foo</a></div>
-
-# foo
-
-<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" markdown="1">
-
-``` kotlin
-
-
-fun main(args: Array<String>) {
-//sampleStart
-val words = listOf("a", "abc", "ab", "def", "abcd")
-val byLength = words.groupBy { it.length }
-
-println(byLength.keys) // [1, 3, 2, 4]
-println(byLength.values) // [[a], [abc, def], [ab], [abcd]]
-
-val mutableByLength: MutableMap<Int, MutableList<String>> = words.groupByTo(mutableMapOf()) { it.length }
-// same content as in byLength map, but the map is mutable
-println("mutableByLength == byLength is ${mutableByLength == byLength}") // true
-//sampleEnd
-}
-```
-
-</div>