diff options
author | Suraj Sahani <surajkumarsahani1997@gmail.com> | 2021-07-13 13:54:07 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 10:24:07 +0200 |
commit | 45b862a40a8eef29488ba9c339c5a0d7f49d8736 (patch) | |
tree | adfc23602fe6c5d16b6ccb95137e917e70e892f0 | |
parent | 7d6daa8df4d70859fe6cd82750508ee9ab40437a (diff) | |
download | dokka-45b862a40a8eef29488ba9c339c5a0d7f49d8736.tar.gz dokka-45b862a40a8eef29488ba9c339c5a0d7f49d8736.tar.bz2 dokka-45b862a40a8eef29488ba9c339c5a0d7f49d8736.zip |
plugin configuration changing from fqPluginName=json^^fqPluginName=json.. to `fqPluginName=json...` (#2019)
* plugin configuration
typo fix
* Reverting back separator with quotation marks
is it okay?
-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 d03b8ff1..6b96fb01 100644 --- a/docs/src/doc/docs/user_guide/cli/usage.md +++ b/docs/src/doc/docs/user_guide/cli/usage.md @@ -14,7 +14,7 @@ Dokka supports the following command line arguments: * `-moduleName` - (required) - module name used as a part of source set ID when declaring dependent source sets * `-cacheRoot` - cache directory to enable package-list caching * `-pluginsClasspath` - artifacts with Dokka plugins, separated by `;`. At least `dokka-base` and all its dependencies must be added there - * `-pluginsConfiguration` - configuration for plugins in format fqPluginName=json^^fqPluginName=json... + * `-pluginsConfiguration` - configuration for plugins in format `fqPluginName=json^^fqPluginName=json...` * `-offlineMode` - do not resolve package-lists online * `-failOnWarning` - throw an exception instead of a warning * `-globalPackageOptions` - per package options added to all source sets |