From 3693c2f7e75822ad035007f98c8d55006d9eabbd Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Thu, 16 Mar 2017 21:07:29 +0300 Subject: Fix p tag closing in HTML format's --- core/testdata/format/overloadsWithDescription.html | 3 +-- core/testdata/format/overloadsWithDifferentDescriptions.html | 9 ++++----- core/testdata/format/parameterAnchor.html | 3 +-- 3 files changed, 6 insertions(+), 9 deletions(-) (limited to 'core/testdata') diff --git a/core/testdata/format/overloadsWithDescription.html b/core/testdata/format/overloadsWithDescription.html index 09b92e66..fe98b8fe 100644 --- a/core/testdata/format/overloadsWithDescription.html +++ b/core/testdata/format/overloadsWithDescription.html @@ -14,8 +14,7 @@

Performs an action on x.

This is a long description.

Parameters

-

-x - the value to perform the action on. +x - the value to perform the action on.

diff --git a/core/testdata/format/overloadsWithDifferentDescriptions.html b/core/testdata/format/overloadsWithDifferentDescriptions.html index 4d621d33..947c72d6 100644 --- a/core/testdata/format/overloadsWithDifferentDescriptions.html +++ b/core/testdata/format/overloadsWithDifferentDescriptions.html @@ -7,22 +7,21 @@ test / f

f

-

fun f(x: Int): Unit

Performs an action on x.

This is a long description.

Parameters

-

-x - the int value to perform the action on. +x - the int value to perform the action on.

+

fun f(x: String): Unit

Performs an action on x.

This is a long description.

Parameters

-

-x - the string value to perform the action on. +x - the string value to perform the action on.

+

diff --git a/core/testdata/format/parameterAnchor.html b/core/testdata/format/parameterAnchor.html index 15532a6d..ecb89fe6 100644 --- a/core/testdata/format/parameterAnchor.html +++ b/core/testdata/format/parameterAnchor.html @@ -11,8 +11,7 @@ fun <T> processFiles(processor: () -> T): List<T>

Runs processor for each file and collects its results into single list

Parameters

-

-processor - function to receive context for symbol resolution and file for processing +processor - function to receive context for symbol resolution and file for processing

-- cgit