Skip to content

Commit 23a7469

Browse files
committed
typo
1 parent 65a3e02 commit 23a7469

File tree

2 files changed

+4
-4
lines changed
  • core
    • generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl
    • src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl

2 files changed

+4
-4
lines changed

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ internal fun KCallable<*>.isGetterLike(): Boolean =
370370

371371
/** Returns the column name for this callable.
372372
* 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.
373-
* Otherwise, the name of the callable is returned with proper getter-trimming iff it's a [KFunction]. */
373+
* Otherwise, the name of the callable is returned with proper getter-trimming if it's a [KFunction]. */
374374
@PublishedApi
375375
internal val KFunction<*>.columnName: String
376376
get() = findAnnotation<ColumnName>()?.name
@@ -381,15 +381,15 @@ internal val KFunction<*>.columnName: String
381381

382382
/** Returns the column name for this callable.
383383
* 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.
384-
* Otherwise, the name of the callable is returned with proper getter-trimming iff it's a [KFunction]. */
384+
* Otherwise, the name of the callable is returned with proper getter-trimming if it's a [KFunction]. */
385385
@PublishedApi
386386
internal val KProperty<*>.columnName: String
387387
get() = findAnnotation<ColumnName>()?.name ?: name
388388

389389
/**
390390
* Returns the column name for this callable.
391391
* If the callable contains the [ColumnName] annotation, its [ColumnName.name] is returned.
392-
* Otherwise, the name of the callable is returned with proper getter-trimming iff it's a [KFunction].
392+
* Otherwise, the name of the callable is returned with proper getter-trimming if it's a [KFunction].
393393
*/
394394
@PublishedApi
395395
internal val KCallable<*>.columnName: String

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ internal val KProperty<*>.columnName: String
379379
/**
380380
* Returns the column name for this callable.
381381
* If the callable contains the [ColumnName] annotation, its [ColumnName.name] is returned.
382-
* Otherwise, the name of the callable is returned with proper getter-trimming iff it's a [KFunction].
382+
* Otherwise, the name of the callable is returned with proper getter-trimming if it's a [KFunction].
383383
*/
384384
@PublishedApi
385385
internal val KCallable<*>.columnName: String

0 commit comments

Comments
 (0)