Skip to content

Commit 42ac830

Browse files
fix: ensure description text does not exceed 78 chars per line
1 parent d8a9447 commit 42ac830

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

arrow/compute/vector_sort.go

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ var (
3333
Description: `This function computes an array of indices that define a stable sort.
3434
Supports arrays, chunked arrays, record batches, and tables.
3535
For arrays and chunked arrays, use a single SortKey (ColumnIndex is ignored).
36-
For record batches and tables, use []SortKey to specify columns and their sort order; at least one key is required and each key must reference a valid column.`,
36+
For record batches and tables, use []SortKey to specify columns and sort
37+
order; at least one key is required. Each key must reference a valid column.`,
3738
ArgNames: []string{"input"},
3839
OptionsType: "SortKeys",
3940
}
@@ -52,9 +53,11 @@ For record batches and tables, use []SortKey to specify columns and their sort o
5253

5354
sortDoc = FunctionDoc{
5455
Summary: "Return a sorted copy of the input",
55-
Description: `This function sorts the input using the same ordering as sort_indices and returns
56-
the reordered values. It is equivalent to take(input, sort_indices(input, options)).
57-
Supports arrays, chunked arrays, record batches, and tables with the same SortKeys options as sort_indices.`,
56+
Description: `This function sorts the input using the same ordering as sort_indices
57+
and returns the reordered values. It is equivalent to take(input,
58+
sort_indices(input, options)).
59+
Supports arrays, chunked arrays, record batches, and tables with the same
60+
SortKeys options as sort_indices.`,
5861
ArgNames: []string{"input"},
5962
OptionsType: "SortKeys",
6063
}

0 commit comments

Comments
 (0)