Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
### What's done:
- WIP

Closes #1884
  • Loading branch information
DrAlexD committed Dec 21, 2023
1 parent 46ec9b9 commit fa7f3cf
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ open class B<K : Any> constructor(
* kdoc property
* comment
*/
class A<K : Any, P: Any, G: Any> constructor(
class A<K : Any, P : Any, G : Any> constructor(
private val privateName: String,
protected val protectedName: String,
internal val internalName: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ open class B<K : Any> constructor(
* kdoc property
* comment
*/
class A<K : Any, P: Any, G: Any> constructor(
class A<K : Any, P : Any, G : Any> constructor(
private val privateName: String,
protected val protectedName: String,
internal val internalName: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ open class B<K : Any> constructor(
open val openAddr: String
) {}

class A<K : Any, P: Any, G: Any> constructor(
class A<K : Any, P : Any, G : Any> constructor(
//single-line comment
private val privateName: String,
//single-line comment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ open class B<K : Any> constructor(
* kdoc property
* comment
*/
class A<K : Any, P: Any, G: Any> constructor(
class A<K : Any, P : Any, G : Any> constructor(
private val privateName: String,
protected val protectedName: String,
internal val internalName: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ class A constructor(
) {}

/**
* @property name property info
* @param name property info
*/
class A constructor(
val name: String
) {}

/**
* @property name property info
* @param name property info
*/
class A constructor(
//single-line comment
Expand Down Expand Up @@ -97,14 +97,14 @@ class A constructor(
) {}

/**
* @property name property info
* @param name property info
*/
class A constructor(
private val name: String
) {}

/**
* @property name property info
* @param name property info
*/
class A constructor(
//single-line comment
Expand Down Expand Up @@ -145,7 +145,7 @@ class A constructor(
) {}

/**
* @property openName open property info
* @param openName open property info
* @param openLastName
* open last property
* info
Expand Down Expand Up @@ -185,7 +185,7 @@ open class B<K : Any> constructor(
* @property openAddr override
* property info
*/
class A<K : Any, P: Any, G: Any> constructor(
class A<K : Any, P : Any, G : Any> constructor(
//single-line comment
private val privateName: String,
//single-line comment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ open class B<K : Any> constructor(
* class
* comment
*/
class A<K : Any, P: Any, G: Any> constructor(
class A<K : Any, P : Any, G : Any> constructor(
//single-line comment
private val privateName: String,
//single-line comment
Expand Down

0 comments on commit fa7f3cf

Please sign in to comment.