From 9a948dcc111c929be8bd9c9525574cd549628764 Mon Sep 17 00:00:00 2001 From: Nikita Klimenko Date: Thu, 10 Jul 2025 19:15:28 +0300 Subject: [PATCH] Update kdoc of castTo --- .../main/kotlin/org/jetbrains/kotlinx/dataframe/api/cast.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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] * ``` *