Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cpp/src/arrow/compute/kernels/aggregate_basic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -971,15 +971,15 @@ const FunctionDoc first_last_doc{
const FunctionDoc first_doc{
"Compute the first value in each group",
("Null values are ignored by default.\n"
"If skip_nulls = false, then this will return the first and last values\n"
"If skip_nulls = false, then this will return the first value\n"
"regardless if it is null"),
{"array"},
"ScalarAggregateOptions"};

const FunctionDoc last_doc{
"Compute the first value in each group",
"Compute the last value in each group",
("Null values are ignored by default.\n"
"If skip_nulls = false, then this will return the first and last values\n"
"If skip_nulls = false, then this will return the last value\n"
"regardless if it is null"),
{"array"},
"ScalarAggregateOptions"};
Expand Down