Skip to content

Commit f6374f6

Browse files
committed
Update deprecation message of row[col] syntax
1 parent cbaa321 commit f6374f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/util/deprecationMessages.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ internal const val DEPRECATED_ACCESS_API =
277277
"It's recommended to migrate to the String or Extension Properties Access API https://kotlin.github.io/dataframe/apilevels.html"
278278

279279
internal const val DEPRECATED_DATA_ROW_COLUMN_REFERENCE_GET =
280-
"Accessing a DataRow by ColumnReference (row[col]) is deprecated. Prefer String or extension property access (e.g., row[\"name\"] or row.name). The reverse indexing col[row] remains supported."
280+
"Accessing a DataRow by ColumnReference (row[col]) is deprecated. Prefer String or extension property access (e.g., row[\"name\"] or row.name). The reverse indexing col[row] and colAccessor.getValue(row) remains supported"
281281

282282
internal const val IDENTITY_FUNCTION = "This overload is an identity function and can be omitted."
283283

0 commit comments

Comments
 (0)