diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-10 19:09:19 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-10 19:09:19 +0100 |
commit | a187baa606f1dd6ce63bc38247f4b5331d78f42b (patch) | |
tree | 4d4290b107ae85ce735756bc04c21c812870d86d /test/data/format | |
parent | 550efc262fbd678da3d08972280b41e666c68065 (diff) | |
download | dokka-a187baa606f1dd6ce63bc38247f4b5331d78f42b.tar.gz dokka-a187baa606f1dd6ce63bc38247f4b5331d78f42b.tar.bz2 dokka-a187baa606f1dd6ce63bc38247f4b5331d78f42b.zip |
consider ContentNodeLink nodes to be equal if they point to nodes with the same name (so that links to parameters with the same name in different overloads would still allow grouping)
Diffstat (limited to 'test/data/format')
-rw-r--r-- | test/data/format/overloadsWithDescription.html | 2 | ||||
-rw-r--r-- | test/data/format/overloadsWithDescription.kt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/data/format/overloadsWithDescription.html b/test/data/format/overloadsWithDescription.html index 6b593fcd..37f5cd08 100644 --- a/test/data/format/overloadsWithDescription.html +++ b/test/data/format/overloadsWithDescription.html @@ -6,7 +6,7 @@ <a href="out.html">test</a> / <a href="out.html"></a> / <a href="out.html">f</a><br/> <br/> <h1>f</h1> -<pre><code><span class="keyword">fun </span><span class="identifier">f</span><span class="symbol">(</span><span class="identifier">x</span><span class="symbol">: </span><span class="identifier">Int</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code></pre><pre><code><span class="keyword">fun </span><span class="identifier">f</span><span class="symbol">(</span><span class="identifier">x</span><span class="symbol">: </span><span class="identifier">String</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code></pre><p>Performs an action on x.</p> +<pre><code><span class="keyword">fun </span><span class="identifier">f</span><span class="symbol">(</span><span class="identifier">x</span><span class="symbol">: </span><span class="identifier">Int</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code></pre><pre><code><span class="keyword">fun </span><span class="identifier">f</span><span class="symbol">(</span><span class="identifier">x</span><span class="symbol">: </span><span class="identifier">String</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code></pre><p>Performs an action on <a href="out.html">x</a>.</p> <br/> <br/> <h3>Description</h3> diff --git a/test/data/format/overloadsWithDescription.kt b/test/data/format/overloadsWithDescription.kt index 13c219a2..740e642f 100644 --- a/test/data/format/overloadsWithDescription.kt +++ b/test/data/format/overloadsWithDescription.kt @@ -1,5 +1,5 @@ /** - * Performs an action on x. + * Performs an action on [x]. * * This is a long description. * @param x the value to perform the action on. @@ -7,7 +7,7 @@ fun f(x: Int) { } /** - * Performs an action on x. + * Performs an action on [x]. * * This is a long description. * @param x the value to perform the action on. |