From 17169c9ed75f679d4e8d30b08b531397a83ebf70 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:52:03 -0700 Subject: [PATCH] Update quantiles.pyx --- python/cudf/cudf/_lib/pylibcudf/quantiles.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/cudf/cudf/_lib/pylibcudf/quantiles.pyx b/python/cudf/cudf/_lib/pylibcudf/quantiles.pyx index 1f3b5ca82a5..b317966846e 100644 --- a/python/cudf/cudf/_lib/pylibcudf/quantiles.pyx +++ b/python/cudf/cudf/_lib/pylibcudf/quantiles.pyx @@ -107,13 +107,13 @@ cpdef Table quantiles( is_input_sorted: Sorted, default Sorted.NO Whether the input table has been pre-sorted or not. column_order: list, default None - A list of :py:class:`~cudf._lib.pylibcudf.types.Order` enums, + A list of :py:class:`~.types.Order` enums, indicating the desired sort order for each column. By default, will sort all columns so that they are in ascending order. Ignored if `is_input_sorted` is `Sorted.YES` null_precedence: list, default None - A list of :py:class:`~cudf._lib.pylibcudf.types.NullOrder` enums, + A list of :py:class:`~.types.NullOrder` enums, indicating how nulls should be sorted. By default, will sort all columns so that nulls appear before all other elements.