diff --git a/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/cast.kt b/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/cast.kt index a6c4be91d8..8744e505a5 100644 --- a/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/cast.kt +++ b/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/cast.kt @@ -41,9 +41,9 @@ public inline fun AnyFrame.castTo( ): DataFrame = cast(verify = verify) /** - * With the compiler plugin, schema marker T of DataFrame can be a local type. - * You cannot refer to it directly from your code, like a type argument for cast. - * The example below shows a situation where you'd need to cast DataFrame<*> to DataFrame. + * With the compiler plugin, schema marker `T` of `DataFrame` can be a local type. + * You cannot refer to it directly from your code, like making it a type argument for `cast`. + * The example below shows a situation where you'd need to cast `DataFrame<*>` to `DataFrame`. * This function helps by inferring type from [schemaFrom] * ``` *