Skip to content

Commit bddf7bf

Browse files
committed
Fix linter
1 parent 8cc6c00 commit bddf7bf

File tree

1 file changed

+1
-2
lines changed
  • core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api

1 file changed

+1
-2
lines changed

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/distinct.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import kotlin.reflect.KProperty
1919

2020
// region DataFrame
2121

22-
2322
/**
2423
* ## The Distinct Operation
2524
*
@@ -36,6 +35,7 @@ import kotlin.reflect.KProperty
3635
* @see {@include [DocumentationUrls.Distinct]}
3736
*/
3837
@ExcludeFromSources
38+
@Suppress("ClassName")
3939
private interface DistinctDocs {
4040
interface DISTINCT_PARAM
4141
}
@@ -100,7 +100,6 @@ public fun <T> DataFrame<T>.distinctBy(vararg columns: String): DataFrame<T> = d
100100
public fun <T> DataFrame<T>.distinctBy(vararg columns: AnyColumnReference): DataFrame<T> =
101101
distinctBy { columns.toColumnSet() }
102102

103-
104103
/**
105104
* {@include [DistinctDocs]}
106105
* {@set PHRASE_ENDING the specified columns}.

0 commit comments

Comments
 (0)