From 23a7469b2a3804e354aa629ed8790570b5ebfc69 Mon Sep 17 00:00:00 2001 From: Jolan Rensen Date: Thu, 25 Apr 2024 17:37:40 +0200 Subject: [PATCH] typo --- .../kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt | 6 +++--- .../kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt b/core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt index 5f1241a21..c82394b6d 100644 --- a/core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt +++ b/core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt @@ -370,7 +370,7 @@ internal fun KCallable<*>.isGetterLike(): Boolean = /** Returns the column name for this callable. * If the callable contains the [ColumnName][org.jetbrains.kotlinx.dataframe.annotations.ColumnName] annotation, its [ColumnName.name][org.jetbrains.kotlinx.dataframe.annotations.ColumnName.name] is returned. - * Otherwise, the name of the callable is returned with proper getter-trimming iff it's a [KFunction]. */ + * Otherwise, the name of the callable is returned with proper getter-trimming if it's a [KFunction]. */ @PublishedApi internal val KFunction<*>.columnName: String get() = findAnnotation()?.name @@ -381,7 +381,7 @@ internal val KFunction<*>.columnName: String /** Returns the column name for this callable. * If the callable contains the [ColumnName][org.jetbrains.kotlinx.dataframe.annotations.ColumnName] annotation, its [ColumnName.name][org.jetbrains.kotlinx.dataframe.annotations.ColumnName.name] is returned. - * Otherwise, the name of the callable is returned with proper getter-trimming iff it's a [KFunction]. */ + * Otherwise, the name of the callable is returned with proper getter-trimming if it's a [KFunction]. */ @PublishedApi internal val KProperty<*>.columnName: String get() = findAnnotation()?.name ?: name @@ -389,7 +389,7 @@ internal val KProperty<*>.columnName: String /** * Returns the column name for this callable. * If the callable contains the [ColumnName] annotation, its [ColumnName.name] is returned. - * Otherwise, the name of the callable is returned with proper getter-trimming iff it's a [KFunction]. + * Otherwise, the name of the callable is returned with proper getter-trimming if it's a [KFunction]. */ @PublishedApi internal val KCallable<*>.columnName: String diff --git a/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt b/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt index 7ee866914..6cb461271 100644 --- a/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt +++ b/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt @@ -379,7 +379,7 @@ internal val KProperty<*>.columnName: String /** * Returns the column name for this callable. * If the callable contains the [ColumnName] annotation, its [ColumnName.name] is returned. - * Otherwise, the name of the callable is returned with proper getter-trimming iff it's a [KFunction]. + * Otherwise, the name of the callable is returned with proper getter-trimming if it's a [KFunction]. */ @PublishedApi internal val KCallable<*>.columnName: String