diff options
author | Dmitry Jemerov <intelliyole@gmail.com> | 2014-12-29 20:31:08 +0100 |
---|---|---|
committer | Dmitry Jemerov <intelliyole@gmail.com> | 2014-12-29 20:31:08 +0100 |
commit | 41aeba5f437a7d31e4ee34a660e8262ba7d27790 (patch) | |
tree | f91f6ee668a88ba5a73c0edd86bd45604d34571f /test/data/format | |
parent | badba07c1d151ff5a9cf623abecf7f2c906b5931 (diff) | |
parent | c43a437caa047f787bd3bb84ff612f505d0f8efc (diff) | |
download | dokka-41aeba5f437a7d31e4ee34a660e8262ba7d27790.tar.gz dokka-41aeba5f437a7d31e4ee34a660e8262ba7d27790.tar.bz2 dokka-41aeba5f437a7d31e4ee34a660e8262ba7d27790.zip |
Merge pull request #7 from orangy/empty-description
don't generate "Description" header if nothing is going to follow it
Diffstat (limited to 'test/data/format')
-rw-r--r-- | test/data/format/emptyDescription.kt | 5 | ||||
-rw-r--r-- | test/data/format/emptyDescription.md | 15 |
2 files changed, 20 insertions, 0 deletions
diff --git a/test/data/format/emptyDescription.kt b/test/data/format/emptyDescription.kt new file mode 100644 index 00000000..3ed81dfa --- /dev/null +++ b/test/data/format/emptyDescription.kt @@ -0,0 +1,5 @@ +/** + * Function fn + */ +fun fn() { +}
\ No newline at end of file diff --git a/test/data/format/emptyDescription.md b/test/data/format/emptyDescription.md new file mode 100644 index 00000000..5e8c05c0 --- /dev/null +++ b/test/data/format/emptyDescription.md @@ -0,0 +1,15 @@ +[test](out.md) / [](out.md) / [fn](out.md) + + +# fn + + +``` +fun fn(): Unit +``` + + +Function fn + + + |