You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2023/05/27 08:44:35 UTC

[arrow-rs] branch master updated: fix: arrow_row docs.rs links (#4292)

This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new fb5c41860 fix: arrow_row docs.rs links (#4292)
fb5c41860 is described below

commit fb5c41860341ff5f49145de85c261d537aa20150
Author: Robert Pack <42...@users.noreply.github.com>
AuthorDate: Sat May 27 10:44:28 2023 +0200

    fix: arrow_row docs.rs links (#4292)
---
 arrow-ord/src/sort.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arrow-ord/src/sort.rs b/arrow-ord/src/sort.rs
index 144d078d7..1d9653259 100644
--- a/arrow-ord/src/sort.rs
+++ b/arrow-ord/src/sort.rs
@@ -1061,7 +1061,7 @@ pub struct SortColumn {
 /// assert!(sorted_columns[0].is_null(0));
 /// ```
 ///
-/// Note: for multi-column sorts without a limit, using the [row format](https://docs.rs/arrow/latest/arrow/row/)
+/// Note: for multi-column sorts without a limit, using the [row format](https://docs.rs/arrow-row/latest/arrow_row/)
 /// may be significantly faster
 ///
 pub fn lexsort(
@@ -1078,7 +1078,7 @@ pub fn lexsort(
 /// Sort elements lexicographically from a list of `ArrayRef` into an unsigned integer
 /// (`UInt32Array`) of indices.
 ///
-/// Note: for multi-column sorts without a limit, using the [row format](https://docs.rs/arrow/latest/arrow/row/)
+/// Note: for multi-column sorts without a limit, using the [row format](https://docs.rs/arrow-row/latest/arrow_row/)
 /// may be significantly faster
 pub fn lexsort_to_indices(
     columns: &[SortColumn],