From 83ed4bf021c3495308c1d1476ba6491a97cc59ca Mon Sep 17 00:00:00 2001 From: Nghia Truong Date: Fri, 3 Dec 2021 13:56:39 -0700 Subject: [PATCH] Fix comment --- java/src/main/java/ai/rapids/cudf/Table.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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