aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/pages
diff options
context:
space:
mode:
authorSzymon Świstun <sswistun@virtuslab.com>2019-12-16 17:59:48 +0100
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-01-08 10:45:08 +0100
commitbe47aa9b85be2100204dcb740f8eea41489e67a9 (patch)
treea8170c350f186de0e96a52dca6f089340334e45d /core/src/main/kotlin/pages
parentf57e3081052d6d148b4f8af70f838ba13ae96b29 (diff)
downloaddokka-be47aa9b85be2100204dcb740f8eea41489e67a9.tar.gz
dokka-be47aa9b85be2100204dcb740f8eea41489e67a9.tar.bz2
dokka-be47aa9b85be2100204dcb740f8eea41489e67a9.zip
response to comments
Diffstat (limited to 'core/src/main/kotlin/pages')
-rw-r--r--core/src/main/kotlin/pages/PageNodes.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/pages/PageNodes.kt b/core/src/main/kotlin/pages/PageNodes.kt
index 0aa439de..9274ac2b 100644
--- a/core/src/main/kotlin/pages/PageNodes.kt
+++ b/core/src/main/kotlin/pages/PageNodes.kt
@@ -119,7 +119,7 @@ class MemberPageNode(
else MemberPageNode(name, content, dri, documentable, children, embeddedResources)
}
-data class PlatformData(val platformType: Platform, val targets: List<String>) {
+data class PlatformData(val name: String, val platformType: Platform, val targets: List<String>) {
override fun toString() = targets.toString()
}