Skip to content

Page with overloads is unreadable if there is a param tag #4239

@atyrin

Description

@atyrin

In 2.1.0 pages with overloads lost double divider, and now it becomes hard to distinguish each declaration

/**
 * Method for overloading without parameters
 * @return [Unit] returns nothing but
 */
fun method(){}

/**
 * Method for overloading with 1 parameter
 * @param p the only [Int] parameter
 * @return [Unit] returns nothing but
 */
fun method(p: Int){}

/**
 * Method for overloading with 1 parameter
 * @param p the only [Int] parameter
 * @param p1 the second [Int] parameter
 * @return [Unit] returns nothing but
 */
fun method(p: Int, p1: Int){}

/**
 * Method for overloading with 2 parameter
 * @param p the only [Int] parameter
 * @param p1 the second [Int] parameter
 * @param p2 the third [Int] parameter
 * @return [Unit] returns nothing but
 */
fun method(p: Int, p1: Int, p2: Int){}
Image

Metadata

Metadata

Assignees

Labels

bughtml: frontendAn issue/PR that only or primarily requires frontend work (html/css)

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions