diff options
author | Tim McCormack <cortex@brainonfire.net> | 2019-01-30 13:51:00 +0000 |
---|---|---|
committer | Simon Ogorodnik <simon.ogorodnik@gmail.com> | 2019-01-30 16:51:00 +0300 |
commit | fc3b668e2acefad7990b8ed02b9382c0c800a04e (patch) | |
tree | 8726a3eb8e598d10d7e3166ac6c3b3f52f2bc582 /README.md | |
parent | c189c8c338c219b8d773666475f5ae2818461b0a (diff) | |
download | dokka-fc3b668e2acefad7990b8ed02b9382c0c800a04e.tar.gz dokka-fc3b668e2acefad7990b8ed02b9382c0c800a04e.tar.bz2 dokka-fc3b668e2acefad7990b8ed02b9382c0c800a04e.zip |
Fix inner tag for "includes" in Maven syntax example (#414)
`includes` uses `include` for subitems, not `file`
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -252,8 +252,8 @@ The available configuration options are shown below: <!-- List of '.md' files with package and module docs --> <!-- http://kotlinlang.org/docs/reference/kotlin-doc.html#module-and-package-documentation --> <includes> - <file>packages.md</file> - <file>extra.md</file> + <include>packages.md</include> + <include>extra.md</include> </includes> <!-- List of sample roots --> |