diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/src/test/kotlin/markdown/KDocTest.kt | 2 | ||||
-rw-r--r-- | core/src/test/kotlin/markdown/ParserTest.kt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/src/test/kotlin/markdown/KDocTest.kt b/core/src/test/kotlin/markdown/KDocTest.kt index c084154b..c58c4e30 100644 --- a/core/src/test/kotlin/markdown/KDocTest.kt +++ b/core/src/test/kotlin/markdown/KDocTest.kt @@ -20,7 +20,7 @@ open class KDocTest : AbstractCoreTest() { |/src/main/kotlin/example/Test.kt |package example | /** - ${kdoc.split("\n").joinToString("") { "| * $it\n" } } + ${kdoc.split("\n").joinToString("") { "| *$it\n" } } | */ |class Test """.trimMargin() diff --git a/core/src/test/kotlin/markdown/ParserTest.kt b/core/src/test/kotlin/markdown/ParserTest.kt index 107940f6..35b004e7 100644 --- a/core/src/test/kotlin/markdown/ParserTest.kt +++ b/core/src/test/kotlin/markdown/ParserTest.kt @@ -101,7 +101,7 @@ class ParserTest : KDocTest() { } @Test fun `Emphasis with star`() { - val kdoc = "*text*" + val kdoc = " *text*" val expectedDocumentationNode = DocumentationNode( listOf( Description( |