From a3eb52427415b62529d361c27ee812521c456ce4 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Wed, 26 Aug 2020 12:05:20 -0500 Subject: [PATCH] Fix doc references in obj_array --- pytools/obj_array.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pytools/obj_array.py b/pytools/obj_array.py index 509f158..f0e5f24 100644 --- a/pytools/obj_array.py +++ b/pytools/obj_array.py @@ -131,7 +131,7 @@ def obj_array_vectorize(f, ary): .. note :: - This function exists because :func:`numpy.vectorize` suffers from the same + This function exists because :class:`numpy.vectorize` suffers from the same issue described under :func:`make_obj_array`. """ @@ -158,7 +158,7 @@ def rec_obj_array_vectorize(f, ary): .. note :: - This function exists because :func:`numpy.vectorize` suffers from the same + This function exists because :class:`numpy.vectorize` suffers from the same issue described under :func:`make_obj_array`. """ if isinstance(ary, np.ndarray) and ary.dtype.char == "O": @@ -186,7 +186,7 @@ def obj_array_vectorize_n_args(f, *args): .. note :: - This function exists because :func:`numpy.vectorize` suffers from the same + This function exists because :class:`numpy.vectorize` suffers from the same issue described under :func:`make_obj_array`. """ oarray_arg_indices = [] -- GitLab