diff --git a/python/cudf/cudf/core/dataframe.py b/python/cudf/cudf/core/dataframe.py index ca3817c4e32..618f38582d5 100644 --- a/python/cudf/cudf/core/dataframe.py +++ b/python/cudf/cudf/core/dataframe.py @@ -3682,12 +3682,11 @@ def apply( """ Apply a function along an axis of the DataFrame. ``apply`` relies on Numba to JIT compile ``func``. - Thus the allowed operations within ``func`` are limited - to the ones specified - [here](https://numba.pydata.org/numba-doc/latest/cuda/cudapysupported.html). - For more information, see the cuDF guide - to user defined functions found - [here](https://docs.rapids.ai/api/cudf/stable/user_guide/guide-to-udfs.html). + Thus the allowed operations within ``func`` are limited to `those + supported by the CUDA Python Numba target + `__. + For more information, see the `cuDF guide to user defined functions + `__. Parameters ---------- diff --git a/python/cudf/cudf/core/series.py b/python/cudf/cudf/core/series.py index 9c89739a73a..ce3f2f7b619 100644 --- a/python/cudf/cudf/core/series.py +++ b/python/cudf/cudf/core/series.py @@ -2024,12 +2024,11 @@ def apply(self, func, convert_dtype=True, args=(), **kwargs): Similar to ``pandas.Series.apply``. ``apply`` relies on Numba to JIT compile ``func``. - Thus the allowed operations within ``func`` are limited - to the ones specified - [here](https://numba.pydata.org/numba-doc/latest/cuda/cudapysupported.html). - For more information, see the cuDF guide to - user defined functions found - [here](https://docs.rapids.ai/api/cudf/stable/user_guide/guide-to-udfs.html). + Thus the allowed operations within ``func`` are limited to `those + supported by the CUDA Python Numba target + `__. + For more information, see the `cuDF guide to user defined functions + `__. Parameters ----------