aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 5a96c60a..1730c87d 100644
--- a/README.md
+++ b/README.md
@@ -51,7 +51,7 @@ dokka {
Kotlin
```kotlin
-tasks.dokkaKdoc {
+tasks.dokkaHtml {
outputDirectory = "$buildDir/dokka"
}
```
@@ -190,7 +190,7 @@ kotlin { // Kotlin Multiplatform plugin configuration
js("customName") // Define a js platform named "customName" If you want to generate docs for it, you need to have this name in dokka configuration below
}
-dokkaKdoc {
+dokkaHtml {
outputDirectory = "$buildDir/dokka"
multiplatform {
@@ -220,7 +220,7 @@ kotlin { // Kotlin Multiplatform plugin configuration
js("customName")
}
-dokkaKdoc {
+dokkaHtml {
outputDirectory = "$buildDir/dokka"
multiplatform {
@@ -246,7 +246,7 @@ dokkaKdoc {
For convenience, there is also a reserved block called `global`, which is a top-level configuration of `perPackageOptions`, `externalDocumentationLinks`, and `sourceLinks` shared by every platform. Eg.
```groovy
-dokkaKdoc {
+dokkaHtml {
multiplatform {
global { // perPackageOptions, sourceLinks and externalDocumentationLinks from here will be copied to every other platform (jvm and js in eg.)
perPackageOption {