Skip to content

Commit 68974b8

Browse files
committed
Fixes in kdocs
1 parent 53cc8ba commit 68974b8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/kotlin/org/jetbrains/kotlinx/dataframe/DataColumn.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import kotlin.reflect.typeOf
3737
* Base interface for [ValueColumn] and [FrameColumn], but not for [ColumnGroup]. However, implementations for all three [column kinds][ColumnKind] derive from DataColumn and can cast to it safely.
3838
* Column operations that have signature clash with [DataFrame] API ([filter], [take], [map] etc.) are defined for [DataColumn] and not for [BaseColumn].
3939
*
40-
* @param T - type of values in the column.
40+
* @param T type of values in the column.
4141
*/
4242
public interface DataColumn<out T> : BaseColumn<T> {
4343

src/main/kotlin/org/jetbrains/kotlinx/dataframe/columns/BaseColumn.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import kotlin.reflect.KType
1515
* Base interface for all three kinds of columns: [ValueColumn], [ColumnGroup] and [FrameColumn].
1616
* Column operations that doesn't clash by signature with [DataFrame] operations can be defined for [BaseColumn]
1717
*
18-
* @param T - type of values contained in column.
18+
* @param T type of values contained in column.
1919
*/
2020
public interface BaseColumn<out T> : ColumnReference<T> {
2121

src/main/kotlin/org/jetbrains/kotlinx/dataframe/columns/FrameColumn.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import org.jetbrains.kotlinx.dataframe.schema.DataFrameSchema
77
/**
88
* Column that stores values of type [DataFrame]
99
*
10-
* @param T - schema marker of contained dataframes. See [DataFrame] for details.
10+
* @param T schema marker of contained dataframes. See [DataFrame] for details.
1111
*/
1212
public interface FrameColumn<out T> : DataColumn<DataFrame<T>> {
1313

0 commit comments

Comments
 (0)