diff options
author | Marcin Aman <marcin.aman@gmail.com> | 2021-07-28 09:14:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 09:14:38 +0200 |
commit | 2cd95b0828518dde751d039f4456dcf93e04dfc1 (patch) | |
tree | bf63fa90f16a53b4af01d29a9494f4e5ad531bd7 /plugins/base/src/test/kotlin/content/params | |
parent | 79cf537a1d0d5864e23af754836e48d13a5d722f (diff) | |
download | dokka-2cd95b0828518dde751d039f4456dcf93e04dfc1.tar.gz dokka-2cd95b0828518dde751d039f4456dcf93e04dfc1.tar.bz2 dokka-2cd95b0828518dde751d039f4456dcf93e04dfc1.zip |
Missing receiver docs (#2026)
Diffstat (limited to 'plugins/base/src/test/kotlin/content/params')
-rw-r--r-- | plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt b/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt index 26c072fd..f83ca55d 100644 --- a/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt +++ b/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt @@ -1256,15 +1256,15 @@ class ContentForParamsTest : BaseAbstractTest() { } after { group { pWrapped("comment to function") } + group { + header(4){ +"Receiver" } + pWrapped("comment to receiver") + } header(2) { +"Parameters" } group { platformHinted { table { group { - +"<receiver>" - group { group { +"comment to receiver" } } - } - group { +"abc" group { group { +"comment to param" } } } |