diff --git a/java/src/main/java/ai/rapids/cudf/Table.java b/java/src/main/java/ai/rapids/cudf/Table.java index bc50daaf71f..e32d466e853 100644 --- a/java/src/main/java/ai/rapids/cudf/Table.java +++ b/java/src/main/java/ai/rapids/cudf/Table.java @@ -1833,8 +1833,8 @@ public Table filter(ColumnView mask) { * guaranteed in the future. * * @param keyColumns Array of indices representing key columns from the current table. - * @param keepFirst If it is true, the first row in a sequence of duplicate rows will be copied. - * Otherwise, copy the last row. + * @param keepFirst If it is true, the first row with a duplicated key will be copied. Otherwise, + * copy the last row with a duplicated key. * @param nullsEqual Flag to denote whether nulls are treated as equal when comparing rows of the * key columns to check for uniqueness. * @param nullsBefore Flag to specify whether nulls in the key columns will appear before or