Skip to content

Commit 36513f2

Browse files
committed
Fix receiver DSL in one of add overloads
1 parent 0342dec commit 36513f2

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/add.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public inline fun <reified R, T> DataFrame<T>.add(
4343
public inline fun <reified R, T> DataFrame<T>.add(
4444
property: KProperty<R>,
4545
infer: Infer = Infer.Nulls,
46-
noinline expression: RowExpression<T, R>
46+
noinline expression: AddExpression<T, R>
4747
): DataFrame<T> =
4848
(this + map(property, infer, expression))
4949

0 commit comments

Comments
 (0)