diff options
author | Marcin Aman <marcin.aman@gmail.com> | 2021-02-24 16:17:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-24 16:17:45 +0100 |
commit | cbbc62ff5e1c406037ba5a6e5c9b81f3b53d2700 (patch) | |
tree | 37cf26f8b257c7b6e5b3d0178778e19330e061f1 /docs | |
parent | e07f411dc3c2e99acf18dfa428546804b80d30f9 (diff) | |
download | dokka-cbbc62ff5e1c406037ba5a6e5c9b81f3b53d2700.tar.gz dokka-cbbc62ff5e1c406037ba5a6e5c9b81f3b53d2700.tar.bz2 dokka-cbbc62ff5e1c406037ba5a6e5c9b81f3b53d2700.zip |
Fix parameters on cli and bump kotlinx.cli (#1755)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/src/doc/docs/user_guide/cli/usage.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/doc/docs/user_guide/cli/usage.md b/docs/src/doc/docs/user_guide/cli/usage.md index 1f6b1124..e77c686e 100644 --- a/docs/src/doc/docs/user_guide/cli/usage.md +++ b/docs/src/doc/docs/user_guide/cli/usage.md @@ -30,7 +30,7 @@ Dokka supports the following command line arguments: * `-includeNonPublic` - include protected and private code * `-skipDeprecated` - if set, deprecated elements are not included in the generated documentation * `-reportUndocumented` - warn about undocumented members - * `-skipEmptyPackages` - do not create index pages for empty packages + * `-noSkipEmptyPackages` - create index pages for empty packages * `-packageOptions` - list of package options in format `matchingRegex,-deprecated,-privateApi,+reportUndocumented;matchingRegex, ...`, separated by `;` * `-links` - list of external documentation links in format `url^packageListUrl^^url2...`, separated by `;` * `-srcLink` - mapping between a source directory and a Web site for browsing the code in format `<path>=<url>[#lineSuffix]` |