diff options
author | Andrzej Ratajczak <andrzej.ratajczak98@gmail.com> | 2020-02-05 13:54:04 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-02-12 14:29:06 +0100 |
commit | 18e28d080792d3f805d8e3c787675712d6b9b7ce (patch) | |
tree | 415aa35b01e58a61c994a2f5cd823fa37d204df7 /core/src/main/kotlin/model/doc | |
parent | 199b69db4c1cb2cd90a2a190479082150235faf4 (diff) | |
download | dokka-18e28d080792d3f805d8e3c787675712d6b9b7ce.tar.gz dokka-18e28d080792d3f805d8e3c787675712d6b9b7ce.tar.bz2 dokka-18e28d080792d3f805d8e3c787675712d6b9b7ce.zip |
Implements tests for MarkdownParser and fixes some bugs related to its
Diffstat (limited to 'core/src/main/kotlin/model/doc')
-rw-r--r-- | core/src/main/kotlin/model/doc/DocTag.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/model/doc/DocTag.kt b/core/src/main/kotlin/model/doc/DocTag.kt index 0d8b361a..0224634b 100644 --- a/core/src/main/kotlin/model/doc/DocTag.kt +++ b/core/src/main/kotlin/model/doc/DocTag.kt @@ -93,5 +93,5 @@ class DocumentationLink(children: List<DocTag> = emptyList(), params: Map<String override fun equals(other: Any?): Boolean = super.equals(other) && this.dri == (other as DocumentationLink).dri override fun hashCode(): Int = super.hashCode() + dri.hashCode() } -class HorizontalRule : DocTag(emptyList(), emptyMap()) +object HorizontalRule : DocTag(emptyList(), emptyMap()) class CustomDocTag(children: List<DocTag> = emptyList(), params: Map<String, String> = emptyMap()) : DocTag(children, params)
\ No newline at end of file |